Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-12-02 | host_memory: move MAP_ALIGNED_SUPER attempt after 448d4815dece | Jan Beich | |
src/common/host_memory.cpp:410:14: error: unused function 'ChooseVirtualBase' [-Werror,-Wunused-function] 410 | static void* ChooseVirtualBase(size_t virtual_size) { | ^~~~~~~~~~~~~~~~~ | |||
2023-12-02 | host_memory: allow missing MAP_NORESERVE on FreeBSD after 448d4815dece | Jan Beich | |
src/common/host_memory.cpp:408:47: error: use of undeclared identifier 'MAP_NORESERVE' MAP_PRIVATE | MAP_ANONYMOUS | MAP_NORESERVE, -1, 0); ^ | |||
2023-11-30 | cmake: prefer system gamemode library | Alexandre Bouvier | |
2023-11-30 | Merge pull request #12227 from jbeich/gamemode | liamwhite | |
cmake: unbreak build on FreeBSD by re-enabling gamemode | |||
2023-11-30 | Merge pull request #12074 from GPUCode/yuwu-on-the-metal | liamwhite | |
Implement Native Code Execution (NCE) | |||
2023-11-30 | cmake: sync gamemode conditionals with code after 5eec980a2d71 | Jan Beich | |
FAILED: bin/yuzu ld: error: unable to find library -lgamemode FAILED: bin/yuzu-cmd ld: error: undefined symbol: Common::Linux::StartGamemode() >>> referenced by yuzu.cpp >>> src/yuzu_cmd/CMakeFiles/yuzu-cmd.dir/yuzu.cpp.o:(main) ld: error: undefined symbol: Common::Linux::StopGamemode() >>> referenced by yuzu.cpp >>> src/yuzu_cmd/CMakeFiles/yuzu-cmd.dir/yuzu.cpp.o:(main) | |||
2023-11-29 | general: conditionally compile gamemode on linux only | Liam | |
2023-11-29 | Merge pull request #11946 from flodavid/gamemode | liamwhite | |
Enable (Feral Interactive) Gamemode on Linux | |||
2023-11-29 | cmake: Move HAS_NCE to root cmake | GPUCode | |
* So we can use it in common | |||
2023-11-26 | qt: add cpu_backend configuration | amazingfate | |
2023-11-26 | general: fix mac compile | Liam | |
2023-11-26 | Merge pull request #11535 from GPUCode/upload_cmdbuf | Fernando S | |
renderer_vulkan: Introduce separate cmd buffer for uploads | |||
2023-11-25 | yuzu: create linux group in general settings | flodavid | |
- Create files dedicated to starting and stopping gamemode functions - Use them in yuzu and yuzu_cmd modules | |||
2023-11-25 | yuzu: integrate gamemode support on linux | xcfrg | |
2023-11-25 | host_memory: Simplify randomness generation | GPUCode | |
2023-11-25 | common: Enforce fastmem for nce usage | GPUCode | |
2023-11-25 | Address some review comments | GPUCode | |
2023-11-25 | android: Add cpu bakend gui toggle | GPUCode | |
2023-11-25 | arm: Implement native code execution backend | Liam | |
2023-11-25 | device_memory: Enable direct mapped addresses for nce | GPUCode | |
2023-11-25 | settings: Add cpu backend setting | GPUCode | |
2023-11-25 | core: Respect memory permissions in Map | GPUCode | |
2023-11-25 | host_memory: Switch to FreeRegionManager | Liam | |
2023-11-25 | host_memory: ensure map base is between 36 and 39 bits | Liam | |
2023-11-25 | common: Add free region manager | --author=Liam | |
* Abstraction for placeholder region tracking in host_memory | |||
2023-11-25 | common: Add libc sigaction hook | GPUCode | |
2023-11-21 | common: settings: Add ifdefs to define android's default settings | t895 | |
2023-11-21 | config: Unify config handling under frontend_common | t895 | |
Replaces every way of handling config for each frontend with SimpleIni. frontend_common's Config class is at the center where it saves and loads all of the cross-platform settings and provides a set of pure virtual functions for platform specific settings. As a result of making config handling platform specific, several parts had to be moved to each platform's own config class or to other parts. Default keys were put in platform specific config classes and translatable strings for Qt were moved to shared_translation. Default hotkeys, default_theme, window geometry, and qt metatypes were moved to uisettings. Additionally, to reduce dependence on Qt, QStrings were converted to std::strings where applicable. | |||
2023-11-16 | Merge pull request #12007 from german77/moar_buttons | liamwhite | |
core: hid: Split SL and SR buttons | |||
2023-11-13 | Merge pull request #11990 from german77/audio | liamwhite | |
yuzu: Save mute when in background setting | |||
2023-11-12 | renderer_vulkan: Introduce separate cmd buffer for uploads | GPUCode | |
2023-11-11 | core: hid: Split SL and SR buttons | german77 | |
2023-11-10 | kernel: add KPageTableBase | Liam | |
Co-authored-by: Kelebek1 <eeeedddccc@hotmail.co.uk> | |||
2023-11-10 | yuzu: Make mute audio persistent | Narr the Reg | |
2023-11-10 | yuzu: Save mute when in background setting | Narr the Reg | |
2023-11-03 | arm: NativeClock: Special handling for bad system counter clock frequency ↵ | Charles Lombardo | |
reporting On some devices, checking the system counter clock frequency will return 0. Substitute in the correct values to prevent issues. | |||
2023-10-30 | android: Fix resolving android URIs in native code | Charles Lombardo | |
2023-10-29 | Merge pull request #11689 from liamwhite/breakpad | liamwhite | |
qt: implement automatic crash dump support | |||
2023-10-28 | nvidia_flags: Enable GL Threaded optimizations | Ameer J | |
2023-10-25 | cmake: prefer system stb headers | Alexandre Bouvier | |
2023-10-20 | common: use SetThreadDescription API for thread names | Liam | |
2023-10-14 | Merge pull request #11159 from flodavid/master_bis | liamwhite | |
Enable to use controller to close a game | |||
2023-10-13 | common/polyfill_thread: use std::forward where appropriate, qualify ↵ | Valeri Ochinski | |
std::move calls | |||
2023-10-12 | Merge pull request #11746 from liamwhite/relr | liamwhite | |
jit: add support for relr-type relocations | |||
2023-10-12 | kernel: mark TLS accessors as noinline for non-MSVC LTO | Liam | |
2023-10-12 | yuzu: Use new setting method for stop emulation | Florian | |
2023-10-11 | jit: add support for relr-type relocations | Liam | |
2023-10-10 | Merge pull request #11718 from liamwhite/arm64-native-clock | Fernando S | |
common: add arm64 native clock | |||
2023-10-08 | Merge pull request #11705 from FearlessTobi/windows-sc | liamwhite | |
yuzu: Add desktop shortcut support for Windows (continuation of #11344) | |||
2023-10-08 | Merge pull request #10519 from mdmrk/master | liamwhite | |
yuzu-qt: Track play time |