| Age | Commit message (Collapse) | Author |
|
In file included from src/input_common/gcadapter/gc_adapter.cpp:8:
src/./input_common/gcadapter/gc_adapter.h:77:10: error: no template named 'unordered_map' in namespace 'std'
std::unordered_map<int, bool> buttons;
~~~~~^
src/./input_common/gcadapter/gc_adapter.h:78:10: error: no template named 'unordered_map' in namespace 'std'
std::unordered_map<int, u16> axes;
~~~~~^
|
|
configuration: Fix hotkeys that open file dialog in windowed mode
|
|
|
|
|
|
|
|
shader_cache: Fix use-after-free and orphan invalidation cache entries
|
|
GC Adapter Implementation
|
|
|
|
universal
|
|
externals: Track opus as submodule instead of using conan
|
|
little touch ups
|
|
gl_buffer_cache: Copy to buffers created as STREAM_READ before downloading
|
|
Implement GetKeyCodeMap & GetKeyCodeMap2
|
|
Revert "cmake: fix fmt linking"
|
|
|
|
cmake: fix fmt linking
|
|
am: Stub GetIndirectLayerConsumerHandle
|
|
acc: ListOpenContextStoredUsers partial stub
|
|
|
|
config, clarify some code blocks for better readability
|
|
maxwell_to_gl: Implement MirrorOnceClampOGL wrap mode using GL_MIRROR_CLAMP_EXT
|
|
This fixes some cases where entries could have been removed multiple
times reading freed memory. To address this issue this commit removes
duplicates from entries marked for removal and sorts out the removal
process to fix another use-after-free situation.
Another issue fixed in this commit is orphan invalidation cache entries.
Previously only the entries that were invalidated in the current
operations had its entries removed. This led to more use-after-free
situations when these entries were actually invalidated but referenced
an object that didn't exist.
|
|
unexpected unplug
|
|
key_manager: Make use of canonical deleted operator=
|
|
Supersedes #4068 see for details.
|
|
common: unbreak build on BSDs
|
|
Our codebase uppercases member function names.
|
|
cmake: unbreak YUZU_USE_QT_WEB_ENGINE without YUZU_USE_BUNDLED_QT
|
|
Prevents the singleton from being moved from.
|
|
operator= typically returns a reference, it's not void.
While we're at it, we can correct the parameter formatting to adhere to the
codebase.
|
|
crypto: Make KeyManager a singleton class
|
|
prepo: : Don't read extra buffer from report unless passed
|
|
Add game version to window title
|
|
Add "Open Quickstart Guide" and "FAQ" buttons to the Help menu
|
|
|
|
|
|
texture_cache: Check format compatibility before copying
|
|
gl_device: Enable NV_vertex_buffer_unified_memory on Turing devices
|
|
|
|
Like MirrorOnceBorder, this requires the GL_EXT_texture_mirror_clamp extension. This extension is unfortunately not available on Intel's drivers (both Windows proprietary and Linux Mesa). Use GL_MIRROR_CLAMP_TO_EDGE as a fallback if the extension is unavailable.
|
|
maxwell_to_gl/vk: Reorder vertex formats
|
|
Macro code is just uploaded sequentially from a starting address, however that does not mean the entry point for the macro is at that address. This PR adds preliminary support for executing macros in the middle of our cached code.
|
|
hotkeys: Fix issues caused when changing the fullscreen hotkey
|
|
CMake Error at src/yuzu/CMakeLists.txt:7 (add_executable):
Target "yuzu" links to target "Qt5::WebEngineCore" but the target was not
found. Perhaps a find_package() call is missing for an IMPORTED target, or
an ALIAS target is missing?
|
|
src/common/memory_detect.cpp:15:10: fatal error: 'sys/sysinfo.h' file not found
#include <sys/sysinfo.h>
^~~~~~~~~~~~~~~
|
|
|
|
On gcc/ld, and clang/lld, fmt::v6 symbols are excluded, so linking
fails. This fixes the issue.
Note: This was included in the FindBoost changes I shared with
BlinkHawk, however only they were merged. I'm not sure if it was missed,
or if there was an issue with this part of the change.
|
|
renderer_vulkan: Update validation layer name and test before enabling
|
|
Remake Kernel Scheduling, CPU Management & Boot Management (Prometheus)
|
|
ldr: Cleanup NRO & NRR structs
|