summaryrefslogtreecommitdiff
path: root/src/common
AgeCommit message (Collapse)Author
2023-12-02host_memory: move MAP_ALIGNED_SUPER attempt after 448d4815deceJan 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-02host_memory: allow missing MAP_NORESERVE on FreeBSD after 448d4815deceJan 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-30cmake: prefer system gamemode libraryAlexandre Bouvier
2023-11-30Merge pull request #12227 from jbeich/gamemodeliamwhite
cmake: unbreak build on FreeBSD by re-enabling gamemode
2023-11-30Merge pull request #12074 from GPUCode/yuwu-on-the-metalliamwhite
Implement Native Code Execution (NCE)
2023-11-30cmake: sync gamemode conditionals with code after 5eec980a2d71Jan 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-29general: conditionally compile gamemode on linux onlyLiam
2023-11-29Merge pull request #11946 from flodavid/gamemodeliamwhite
Enable (Feral Interactive) Gamemode on Linux
2023-11-29cmake: Move HAS_NCE to root cmakeGPUCode
* So we can use it in common
2023-11-26qt: add cpu_backend configurationamazingfate
2023-11-26general: fix mac compileLiam
2023-11-26Merge pull request #11535 from GPUCode/upload_cmdbufFernando S
renderer_vulkan: Introduce separate cmd buffer for uploads
2023-11-25yuzu: create linux group in general settingsflodavid
- Create files dedicated to starting and stopping gamemode functions - Use them in yuzu and yuzu_cmd modules
2023-11-25yuzu: integrate gamemode support on linuxxcfrg
2023-11-25host_memory: Simplify randomness generationGPUCode
2023-11-25common: Enforce fastmem for nce usageGPUCode
2023-11-25Address some review commentsGPUCode
2023-11-25android: Add cpu bakend gui toggleGPUCode
2023-11-25arm: Implement native code execution backendLiam
2023-11-25device_memory: Enable direct mapped addresses for nceGPUCode
2023-11-25settings: Add cpu backend settingGPUCode
2023-11-25core: Respect memory permissions in MapGPUCode
2023-11-25host_memory: Switch to FreeRegionManagerLiam
2023-11-25host_memory: ensure map base is between 36 and 39 bitsLiam
2023-11-25common: Add free region manager--author=Liam
* Abstraction for placeholder region tracking in host_memory
2023-11-25common: Add libc sigaction hookGPUCode
2023-11-21common: settings: Add ifdefs to define android's default settingst895
2023-11-21config: Unify config handling under frontend_commont895
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-16Merge pull request #12007 from german77/moar_buttonsliamwhite
core: hid: Split SL and SR buttons
2023-11-13Merge pull request #11990 from german77/audioliamwhite
yuzu: Save mute when in background setting
2023-11-12renderer_vulkan: Introduce separate cmd buffer for uploadsGPUCode
2023-11-11core: hid: Split SL and SR buttonsgerman77
2023-11-10kernel: add KPageTableBaseLiam
Co-authored-by: Kelebek1 <eeeedddccc@hotmail.co.uk>
2023-11-10yuzu: Make mute audio persistentNarr the Reg
2023-11-10yuzu: Save mute when in background settingNarr the Reg
2023-11-03arm: 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-30android: Fix resolving android URIs in native codeCharles Lombardo
2023-10-29Merge pull request #11689 from liamwhite/breakpadliamwhite
qt: implement automatic crash dump support
2023-10-28nvidia_flags: Enable GL Threaded optimizationsAmeer J
2023-10-25cmake: prefer system stb headersAlexandre Bouvier
2023-10-20common: use SetThreadDescription API for thread namesLiam
2023-10-14Merge pull request #11159 from flodavid/master_bisliamwhite
Enable to use controller to close a game
2023-10-13common/polyfill_thread: use std::forward where appropriate, qualify ↵Valeri Ochinski
std::move calls
2023-10-12Merge pull request #11746 from liamwhite/relrliamwhite
jit: add support for relr-type relocations
2023-10-12kernel: mark TLS accessors as noinline for non-MSVC LTOLiam
2023-10-12yuzu: Use new setting method for stop emulationFlorian
2023-10-11jit: add support for relr-type relocationsLiam
2023-10-10Merge pull request #11718 from liamwhite/arm64-native-clockFernando S
common: add arm64 native clock
2023-10-08Merge pull request #11705 from FearlessTobi/windows-scliamwhite
yuzu: Add desktop shortcut support for Windows (continuation of #11344)
2023-10-08Merge pull request #10519 from mdmrk/masterliamwhite
yuzu-qt: Track play time