Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-02-26 | Revert "yuzu: config: Remove player 8 and 9 from config file" | Narr the Reg | |
2023-02-26 | Merge pull request #9849 from ameerj/async-astc | liamwhite | |
texture_cache: Add asynchronous ASTC texture decoding | |||
2023-02-25 | yuzu: config: Remove player 8 and 9 from config file | Narr the Reg | |
2023-02-22 | configuration: Add async ASTC decode setting | ameerj | |
2023-02-22 | texture_cache: Add async texture decoding | ameerj | |
2023-02-21 | settings: Add more input settings to the log | Narr the Reg | |
2023-02-12 | Update settings.cpp | m-HD | |
added missing graphical settings to RestoreGlobalState() | |||
2023-02-09 | input_common: Reintroduce custom pro controller support | Narr the Reg | |
2023-02-03 | Revert "Merge pull request #9718 from yuzu-emu/revert-9508-hle-ipc-buffer-span" | ameerj | |
This reverts commit 25fc5c0e1158cb8e81cbc769b24ad84032a1fbfd, reversing changes made to af20e25081f97d55b451606c87922e2b49f0d363. | |||
2023-02-02 | Revert "hle_ipc: Use std::span to avoid heap allocations/copies when calling ↵ | liamwhite | |
ReadBuffer" | |||
2023-02-01 | Merge pull request #9696 from german77/please_forgive_me_for_this_sin | bunnei | |
input_common: Implement turbo buttons | |||
2023-02-01 | input_common: Implement turbo buttons | german77 | |
2023-01-30 | Merge pull request #9508 from ameerj/hle-ipc-buffer-span | bunnei | |
hle_ipc: Use std::span to avoid heap allocations/copies when calling ReadBuffer | |||
2023-01-29 | Move to Clang Format 15 | Levi Behunin | |
Depends on https://github.com/yuzu-emu/build-environments/pull/69 clang-15 primary run | |||
2023-01-27 | polyfill_thread: satisfy execution ordering requirements of stop_callback | Liam | |
2023-01-25 | polyfill_thread: Implement StoppableTimedWait | Morph | |
StoppableTimedWait allows for a timed wait to be stopped immediately after a stop is requested. This is useful in cases where long duration thread sleeps are needed and allows for immediate joining of waiting threads after a stop is requested. Co-Authored-By: liamwhite <liamwhite@users.noreply.github.com> | |||
2023-01-24 | Merge pull request #9662 from abouvier/cmake-llvm | bunnei | |
cmake: prefer system llvm library | |||
2023-01-24 | Merge pull request #9492 from german77/joycon_release | liamwhite | |
Input_common: Implement custom joycon driver v2 | |||
2023-01-23 | cmake: prefer system llvm library | Alexandre Bouvier | |
2023-01-22 | Merge pull request #9613 from Kelebek1/demangle | liamwhite | |
Add stacktrace symbol demangling | |||
2023-01-19 | input_common: Use DriverResult on all engines | german77 | |
2023-01-19 | input_common: Disable SDL driver with switch controllers | Narr the Reg | |
2023-01-19 | input_common: Initial skeleton for custom joycon driver | Narr the Reg | |
2023-01-14 | Be careful of mangled out of bounds read | Kelebek1 | |
2023-01-14 | Move demangle impl to cpp | Kelebek1 | |
2023-01-14 | Add stacktrace symbol demangling | Kelebek1 | |
2023-01-13 | Update settings.h | Matías Locatti | |
2023-01-13 | CPP | Matías Locatti | |
2023-01-13 | 1.5X resolution scaler option | Matías Locatti | |
2023-01-08 | renderer_vulkan: disable turbo by default | Liam | |
2023-01-07 | Merge pull request #9563 from german77/crash_not_allowed | bunnei | |
input_common: Create an update engine | |||
2023-01-06 | Merge pull request #9552 from liamwhite/turbo | liamwhite | |
vulkan: implement 'turbo mode' clock booster | |||
2023-01-05 | input_common: Create an update engine | Narr the Reg | |
2023-01-05 | config: Set the Vulkan driver pipeline cache option to be global | Wollnashorn | |
2023-01-05 | config: Better wording for VK pipeline cache option and enable by default | Wollnashorn | |
2023-01-05 | video_core/vulkan: Added `VkPipelineCache` to store Vulkan pipelines | Wollnashorn | |
As an optional feature which can be enabled in the advanced graphics configuration, all pipelines that get built at the initial shader loading are stored in a VkPipelineCache object and are dumped to the disk. These vendor specific pipeline cache files are located at `/shader/GAME_ID/vulkan_pipelines.bin`. This feature was mainly added because of an issue with the AMD driver (see yuzu-emu#8507) causing invalidation of the cache files the driver builds automatically. | |||
2023-01-04 | common: add setting for renderer clock workaround | Liam | |
2023-01-04 | yuzu-ui: Add setting for disabling macro HLE | Fernando Sahmkow | |
2023-01-04 | Video_core: Address feedback | Fernando Sahmkow | |
2023-01-01 | MacroHLE: Final cleanup and fixes. | Fernando Sahmkow | |
2023-01-01 | MacroHLE: Reduce massive calculations on sizing estimation. | Fernando Sahmkow | |
2023-01-01 | host_memory: Use transparent huge pages where available | Merry | |
2023-01-01 | host_memory: Allocate virtual_base with MAP_NORESERVE | Merry | |
Specify that we do not require swap to be reserved for this address range; allow overcommitting. | |||
2022-12-25 | fsp_srv: Use ReadBufferSpan | ameerj | |
2022-12-19 | scratch_buffer: Explicitly defing resize and resize_destructive functions | ameerj | |
resize keeps previous data intact when the buffer grows resize_destructive destroys the previous data when the buffer grows | |||
2022-12-19 | tests: Add ScratchBuffer tests | ameerj | |
2022-12-19 | common: Add ScratchBuffer class | ameerj | |
This class creates a default initialized heap allocated buffer for cases where value initializing members during allocation or resize is redundant. | |||
2022-12-19 | common: add make_unique_for_overwrite | ameerj | |
2022-12-17 | Enable compiler optimizations and enforce x86-64-v2 on GCC/Clang (#9442) | Matías Locatti | |
* Testing LTO (#4) * Testing LTO * clang * linux * Added the rest of Blinkhawk's optimizations * Unlikely asserts * Removing LTO from Linux builds - GCC * Removing LTO from Linux builds - Clang | |||
2022-12-13 | Set: Allow setting device nickname | Chloe Marcec | |