| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | ci,CMake: Integrate vcpkg into CMakeLists | 2022-07-22 | 1 | -0/+0 | |
| | | | | | Uses manifest mode if the bundled vcpkg is used. | ||||
| * | Merge pull request #8607 from lat9nq/sdl-2.0.20 | 2022-07-21 | 1 | -0/+0 | |
| |\ | | | | | externals: Revert SDL2 to release-2.0.20 | ||||
| | * | externals: Revert SDL2 to release-2.0.20 | 2022-07-18 | 1 | -0/+0 | |
| | | | | | | | | | | | | | prerelease-2.23.1 appears to have issues on the SteamDeck with external controllers. Revert to 2.0.20 for now (and as opposed to using prerelease-2.0.19 like before.) | ||||
| * | | externals: Update dynarmic to 6.2.1 | 2022-07-17 | 1 | -0/+0 | |
| |/ | | | | Fix issue with A64CallbackConfigPass | ||||
| * | Merge pull request #8569 from merryhime/watchpoints | 2022-07-17 | 1 | -0/+0 | |
| |\ | | | | | dynarmic: Abort watchpoints ASAP | ||||
| | * | dynarmic: Abort watchpoints ASAP | 2022-07-15 | 1 | -0/+0 | |
| | | | |||||
| * | | Merge pull request #8525 from lat9nq/update-sdl | 2022-07-17 | 1 | -0/+0 | |
| |\ \ | |/ |/| | externals/SDL: Update to prerelease-2.23.1 | ||||
| | * | externals/SDL: Update to prerelease-2.23.1 | 2022-06-30 | 1 | -0/+0 | |
| | | | | | | | | | This includes a fix needed for building with MSYS2/MinGW. | ||||
| * | | externals: Update dynarmic to 6.1.1 | 2022-07-12 | 1 | -0/+0 | |
| | | | | | | | | | Fixes for fast dispatcher | ||||
| * | | dynarmic: Stop ReadCode callbacks to unmapped addresses | 2022-06-21 | 1 | -0/+0 | |
| |/ | |||||
| * | core/debugger: memory breakpoint support | 2022-06-16 | 1 | -0/+0 | |
| | | |||||
| * | Merge pull request #8383 from Morph1984/shadow-of-the-past | 2022-06-14 | 3 | -39/+38 | |
| |\ | | | | | yuzu: Make variable shadowing a compile-time error | ||||
| | * | externals: Update cpp-httplib to latest | 2022-06-14 | 1 | -0/+0 | |
| | | | |||||
| | * | externals: microprofileui: Eliminate variable shadowing | 2022-06-14 | 1 | -38/+37 | |
| | | | |||||
| | * | externals: microprofile: Eliminate variable shadowing | 2022-06-13 | 1 | -1/+1 | |
| | | | |||||
| * | | general: fix compilation on MinGW GCC 12 | 2022-06-13 | 1 | -0/+5 | |
| |/ | |||||
| * | video_core: Support new VkResult | 2022-05-17 | 1 | -0/+0 | |
| | | |||||
| * | sirit: Allow using system spirv-headers | 2022-05-14 | 1 | -0/+0 | |
| | | |||||
| * | Merge pull request #8282 from liamwhite/gcc-12 | 2022-04-28 | 1 | -0/+0 | |
| |\ | | | | | GCC 12 fixes | ||||
| | * | GCC 12 fixes | 2022-04-28 | 1 | -0/+0 | |
| | | | |||||
| * | | externals: Update libressl to 3.5.2 | 2022-04-24 | 1 | -0/+0 | |
| |/ | | | | This resolves compiler errors in Visual Studio 2022. | ||||
| * | Update dynarmic | 2022-04-19 | 1 | -0/+0 | |
| | | |||||
| * | Merge pull request #8148 from merryhime/interrupts | 2022-04-07 | 1 | -0/+0 | |
| |\ | | | | | dynarmic: Better interrupts | ||||
| | * | dynarmic: Better interrupts | 2022-04-03 | 1 | -0/+0 | |
| | | | |||||
| | * | externals: Update dynarmic to 8bcd46b7 | 2022-04-02 | 1 | -0/+0 | |
| | | | | | | | | | | | * Ensure 128-bit ordered load/stores are atomic * Always order exclusive load/stores | ||||
| | * | externals: Update dynarmic to 9cadab8fa91a63564774ae7dbe74e7c18715f586 | 2022-04-02 | 1 | -0/+0 | |
| | | | | | | | | | Enforce memory ordering for acquire/release instructions. | ||||
| * | | audio_core: remove time stretcher | 2022-04-01 | 2 | -3/+0 | |
| |/ | | | | Also drop the SoundTouch dependency | ||||
| * | externals: Update dynarmic | 2022-03-27 | 1 | -0/+0 | |
| | | | | | IC instructions now check for a need to halt execution | ||||
| * | dynarmic: Accelerate SHA256 and implement for A32 frontend | 2022-03-20 | 1 | -0/+0 | |
| | | | | | | | | * Implements hardware acceleration for SHA256 instructions. * Adds SHA256 instructions introduced in ARMv8 to A32 frontend. * Implements polyfill for processors that do not support hardware accelerated SHA instructions. | ||||
| * | Merge pull request #7959 from merryhime/cmpxchg | 2022-03-01 | 1 | -0/+0 | |
| |\ | | | | | dynarmic: Inline exclusive memory accesses | ||||
| | * | dynarmic: Update to latest master | 2022-02-28 | 1 | -0/+0 | |
| | | | |||||
| | * | dynarmic: Inline exclusive memory accesses | 2022-02-27 | 1 | -0/+0 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Inlines implementation of exclusive instructions into JITted code, improving performance of applications relying heavily on these instructions. We also fastmem these instructions for additional speed, with support for appropriate recompilation on fastmem failure. An unsafe optimization to disable the intercore global_monitor is also provided, should one wish to rely solely on cmpxchg semantics for safety. See also: merryhime/dynarmic#664 | ||||
| * | | ffmpeg: Fix mis-maching argument warning for endif | 2022-02-28 | 1 | -1/+1 | |
| |/ | |||||
| * | externals: Dynarmic: Update to latest rev. | 2022-02-26 | 1 | -0/+0 | |
| | | | | | - Fixes inaccurate size reporting in SpaceRemaining, which caused crashes in yuzu with SSBU. | ||||
| * | Update dynarmic. | 2022-02-01 | 1 | -0/+0 | |
| | | |||||
| * | Update FSR to 1.0.2 | 2022-01-23 | 1 | -18/+18 | |
| | | | | | Updates yuzu's FSR implementation to 1.0.2 | ||||
| * | Improve FFmpeg cmake file | 2022-01-22 | 1 | -3/+8 | |
| | | | | | * Fix compilation if CUDA_INCLUDE_DIRS is empty/contains multiple paths * Pass CMAKE_{C,CXX}_COMPILER_LAUNCHER to ffmpeg compiler | ||||
| * | cmake: make tests optional | 2022-01-12 | 1 | -4/+0 | |
| | | |||||
| * | externals/dynarmic: update to latest revision ... | 2022-01-06 | 1 | -0/+0 | |
| | | | | | ... to resolve compilation errors with fmt 8.1 | ||||
| * | Merge pull request #7610 from Tatsh/more-system-libs | 2022-01-04 | 1 | -3/+3 | |
| |\ | | | | | Add support for linking against system Opus | ||||
| | * | Add support for linking against system opus | 2021-12-21 | 1 | -3/+3 | |
| | | | |||||
| * | | externals: Update dynarmic to 28714ee7 | 2021-12-30 | 1 | -0/+0 | |
| | | | | | | | | | Reduces compilation times on MSVC. | ||||
| * | | Merge pull request #7599 from FernandoS27/primrestart-vulkan | 2021-12-22 | 1 | -0/+0 | |
| |\ \ | | | | | | | Vulkan: Fix Primitive Restart and implement Logical Operations | ||||
| | * | | Vulkan: Implement VK_EXT_primitive_topology_list_restart | 2021-12-18 | 1 | -0/+0 | |
| | |/ | |||||
| * | | Merge pull request #7587 from liushuyu/fix-linux-decoding | 2021-12-18 | 4 | -0/+223 | |
| |\ \ | | | | | | | [Patch v2] externals/ffmpeg: refactor ffmpeg searching and handling in cmake | ||||
| | * | | externals/ffmpeg: set the cmake variable twice ... | 2021-12-15 | 2 | -5/+13 | |
| | | | | | | | | | | | | | ... to avoid leaving variable undefined in the current scope | ||||
| | * | | externals: fix a regression when using MSVC | 2021-12-15 | 2 | -1/+2 | |
| | | | | |||||
| | * | | video_core/codecs: (re-spin) refactor ffmpeg searching and handling | 2021-12-15 | 4 | -0/+214 | |
| | |/ | |||||
| * | | externals/SDL: update SDL to version with Wayland build fix | 2021-12-17 | 2 | -4/+4 | |
| | | | |||||
| * | | externals/CMakeLists: fix detection/init of Switch controllers in SDL 2.0.18 | 2021-12-16 | 1 | -3/+4 | |
| |/ | | | | | | | Enable SDL_THREADS and SDL_ATOMIC Also set SDL_WAYLAND=OFF due to build issue Closes #7572 | ||||