| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-07-09 | Merge pull request #4281 from RealJohnGalt/linkfix2 | bunnei | |
| cmake: fix fmt linking when found | |||
| 2020-07-09 | Merge pull request #4248 from Morph1984/CreateManagedDisplaySeparableLayer | bunnei | |
| AM/ISelfController: Stub CreateManagedDisplaySeparableLayer | |||
| 2020-07-09 | Merge pull request #4202 from ReinUsesLisp/scoped-lock | bunnei | |
| core_timing,scheduler: Use std::scoped_lock when possible | |||
| 2020-07-09 | cmake: fix fmt linking when found | John Galt | |
| This is a new attempt at #4206 that shouldn't break windows builds. If someone else could test on windows, it would be much appreciated. Previously, the build bot passed but the actual builds failed. | |||
| 2020-07-08 | Merge pull request #4219 from ogniK5377/audio-timing | bunnei | |
| audio: Improving audio timing for multicore/single core | |||
| 2020-07-08 | Merge pull request #4266 from jbeich/freebsd | bunnei | |
| gcadapter: unbreak build on FreeBSD | |||
| 2020-07-08 | Merge pull request #4255 from lioncash/copy | bunnei | |
| configure_graphics: Prevent unnecessary string copies in UpdateDeviceComboBox() | |||
| 2020-07-08 | Address comments for better clarity/signed dev count | Ameer | |
| 2020-07-08 | Add more libusb error checks | Ameer | |
| 2020-07-08 | Merge pull request #4243 from CrazyMax/display_version | bunnei | |
| AM: fix GetDisplayVersion | |||
| 2020-07-08 | Merge pull request #4245 from MerryMage/page-table-race | bunnei | |
| memory: Race-condition in pagetables. | |||
| 2020-07-07 | cpu_interrupt_handler: Remove #pragma once from .cpp file | MerryMage | |
| 2020-07-07 | Merge pull request #4150 from ReinUsesLisp/dynamic-state-impl | bunnei | |
| vulkan: Use VK_EXT_extended_dynamic_state when available | |||
| 2020-07-07 | input_common/gcadapter: add missing C++11 header required by libc++ | Jan Beich | |
| 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; ~~~~~^ | |||
| 2020-07-06 | change shortcut context for other hotkeys with file open dialog | Ameer | |
| 2020-07-07 | GetDisplayVersion should return a null-terminated version string. | CrazyMax | |
| also, in case of failed to get of the basic version, we will try get it from application update. | |||
| 2020-07-06 | Fix ss crash on game menu, fix ss on windowed mode | Ameer | |
| 2020-07-06 | configure_graphics: Make use of qOverload in signals/slots | Lioncash | |
| While we're in the same area, we can make use of qOverload to tidy up some function pointer casts. | |||
| 2020-07-06 | configure_graphics: Prevent unnecessary string copies in UpdateDeviceComboBox() | Lioncash | |
| Unlikely to impact performance at all, but this is essentially a "free" transformation, so why not? | |||
| 2020-07-05 | memory: Set page-table pointers before setting attribute = Memory | MerryMage | |
| 2020-07-05 | AM/ISelfController: Stub CreateManagedDisplaySeparableLayer | Morph | |
| Stub this by sending 1 layer id instead of 2 as yuzu does not support multiple layers per display. No adverse side effects have been observed. - Used by Animal Crossing: New Horizons Update 1.3.0 | |||
| 2020-07-04 | Merge pull request #4194 from ReinUsesLisp/fix-shader-cache | Fernando Sahmkow | |
| shader_cache: Fix use-after-free and orphan invalidation cache entries | |||
| 2020-07-04 | Fix merge conflicts? | Ameer | |
| 2020-07-04 | Fix for always firing triggers on some controllers, trigger threshold more ↵ | Ameer | |
| universal | |||
| 2020-07-04 | Merge pull request #4218 from ogniK5377/opus-external | Rodrigo Locatti | |
| externals: Track opus as submodule instead of using conan | |||
| 2020-07-03 | Address lioncash feedback: Log formatting, extern const PadButtonArray, ↵ | Ameer | |
| little touch ups | |||
| 2020-07-02 | Merge pull request #4175 from ReinUsesLisp/read-buffer | bunnei | |
| gl_buffer_cache: Copy to buffers created as STREAM_READ before downloading | |||
| 2020-07-02 | Merge pull request #3924 from ogniK5377/GetKeyCodeMap | bunnei | |
| Implement GetKeyCodeMap & GetKeyCodeMap2 | |||
| 2020-07-02 | Revert "cmake: fix fmt linking" | bunnei | |
| 2020-07-02 | Merge pull request #4206 from RealJohnGalt/linkfix | bunnei | |
| cmake: fix fmt linking | |||
| 2020-07-02 | Merge pull request #4193 from ogniK5377/GetIndirectLayerConsumerHandle-stub | bunnei | |
| am: Stub GetIndirectLayerConsumerHandle | |||
| 2020-07-02 | Merge pull request #4192 from ogniK5377/acc-ListOpenContextStoredUsers-stub | bunnei | |
| acc: ListOpenContextStoredUsers partial stub | |||
| 2020-07-02 | Fix unnecessary diffs | Ameer | |
| 2020-07-02 | Add LR triggers as axes, half press to initiate a press, add GC axis id in ↵ | Ameer | |
| config, clarify some code blocks for better readability | |||
| 2020-07-02 | Merge pull request #4082 from Morph1984/mirror-once-clamp | Rodrigo Locatti | |
| maxwell_to_gl: Implement MirrorOnceClampOGL wrap mode using GL_MIRROR_CLAMP_EXT | |||
| 2020-07-01 | shader_cache: Fix use-after-free and orphan invalidation cache entries | ReinUsesLisp | |
| 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. | |||
| 2020-07-01 | Reset adapter state on init, fixes errors relating driver hang from ↵ | Ameer | |
| unexpected unplug | |||
| 2020-07-01 | Don't handle cycles late if stretcher is active | David Marcec | |
| Timestretcher seems to be broken | |||
| 2020-07-01 | audio: Improving audio timing for multicore/single core | David Marcec | |
| Fixes the issue with needing the timestretcher for multicore. | |||
| 2020-07-01 | Merge pull request #4217 from lioncash/prototype | David | |
| key_manager: Make use of canonical deleted operator= | |||
| 2020-07-01 | externals: Track opus as submodule instead of using conan | David Marcec | |
| Supersedes #4068 see for details. | |||
| 2020-07-01 | Merge pull request #4208 from jbeich/freebsd | LC | |
| common: unbreak build on BSDs | |||
| 2020-07-01 | key_manager: Correct casing of instance() | Lioncash | |
| Our codebase uppercases member function names. | |||
| 2020-07-01 | key_manager: Delete move operations | Lioncash | |
| Prevents the singleton from being moved from. | |||
| 2020-07-01 | key_manager: Make use of canonical deleted operator= | Lioncash | |
| 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. | |||
| 2020-07-01 | Merge pull request #3967 from FearlessTobi/keys-singleton | David | |
| crypto: Make KeyManager a singleton class | |||
| 2020-06-30 | Merge pull request #4153 from ogniK5377/prepo-multibuf | bunnei | |
| prepo: : Don't read extra buffer from report unless passed | |||
| 2020-06-30 | Merge pull request #4063 from FreddyFunk/game-version-in-title | bunnei | |
| Add game version to window title | |||
| 2020-06-30 | Merge pull request #4166 from VolcaEM/quickstart-faq | bunnei | |
| Add "Open Quickstart Guide" and "FAQ" buttons to the Help menu | |||
| 2020-06-30 | common: switch to nullptr for sysctl's empty new value | Jan Beich | |
