summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2023-01-01vfs: Replace cstr concat with char concatMerry
2023-01-01Merge pull request #9533 from merryhime/overcommitliamwhite
host_memory: mmap changes for virtual_base
2023-01-01Merge pull request #9514 from ColinKinloch/en_gbliamwhite
settings: warn on invalid regon/language combinations
2023-01-01host_memory: Use transparent huge pages where availableMerry
2023-01-01host_memory: Allocate virtual_base with MAP_NORESERVEMerry
Specify that we do not require swap to be reserved for this address range; allow overcommitting.
2022-12-30settings: comment language blocklist columnsColin Kinloch
2022-12-30core: hid: emulated_console: Avoid a crash if frontend does not configure ↵bunnei
touch_from_button_maps.
2022-12-29Merge pull request #9515 from liamwhite/cmake-refactorbunnei
CMake: make more features optional
2022-12-30config: Save multiplayer settings only globallyWollnashorn
Saved multiplayer settings like the nickname, remote address, etc. were reset everytime a game was booted up and the game-specific config files were loaded, as these values will never be set.
2022-12-29settings: added regon/language warning bounds checkColin Kinloch
2022-12-28Merge pull request #9423 from vonchenplus/vulkan_quad_stripliamwhite
video_core: Implement all vulkan topology
2022-12-28cmake: make cubeb and SDL2 optionalLiam
2022-12-28Merge pull request #9504 from liamwhite/pg2bunnei
k_page_group: synchronize
2022-12-28cmake: make libusb optionalLiam
2022-12-28cmake: make room server optionalLiam
2022-12-28settings: warn on invalid regon/language combinationsColin Kinloch
2022-12-27Merge pull request #9490 from ameerj/texture-cache-preallocbunnei
texture_cache: Use pre-allocated heap buffer for texture swizzles
2022-12-27Merge pull request #9495 from german77/no_refreshbunnei
yuzu: Automatically refresh device list
2022-12-26tests: add missing headerAlexandre Bouvier
<cstring> is needed for std::memcpy
2022-12-26video_core: Implement other missing vulkan topologyFengChen
2022-12-26video_core: Implement vulkan QuadStrip topologyFengChen
2022-12-25TAS: Increase accuracy of Stick inputsMonsterDruide1
2022-12-25texture_cache: Use Common::ScratchBuffer for swizzle buffersameerj
2022-12-25texture_cache: Use pre-allocated buffer for texture downloadsameerj
2022-12-25texture_cache: Use pre-allocated buffer for texture uploadsameerj
2022-12-25k_page_table: remove HACK_OpenPages/ClosePagesLiam
2022-12-25k_page_group: synchronizeLiam
2022-12-25Merge pull request #9500 from liamwhite/reentrant-shutdownliamwhite
qt: prevent reentrant shutdown
2022-12-25Merge pull request #9496 from liamwhite/shm3liamwhite
kernel: workaround static shared memory initialization
2022-12-25Merge pull request #9487 from liamwhite/look-at-the-timeliamwhite
time: add LockFreeAtomicType
2022-12-24Merge pull request #9453 from ameerj/scratch-vectorFernando S
common: Add ScratchBuffer Class
2022-12-24qt: prevent reentrant shutdownLiam
2022-12-23qt: fix 'Pause' menu item (#9497)liamwhite
2022-12-23Disable automatically opening the console on windows yuzu-cmd builds (#9485)Chris Oboe
* don't automatically open the console on windows build of yuzu-cmd * fix formatting
2022-12-23Merge pull request #9476 from liamwhite/async-shutdownliamwhite
qt: continue event loop during game close
2022-12-23qt: fix uninitialized memory usageLiam
2022-12-23yuzu: Automatically refresh device listgerman77
2022-12-23kernel: workaround static shared memory initializationLiam
2022-12-21time: add LockFreeAtomicTypeLiam
2022-12-21qt: exit properly on guest-initiated closeLiam
2022-12-21qt: use main window as close overlay parentLiam
2022-12-20qt: continue event loop during game closeLiam
2022-12-20Merge pull request #9463 from liamwhite/manager-eventsliamwhite
EmuThread: refactor
2022-12-19scratch_buffer: Explicitly defing resize and resize_destructive functionsameerj
resize keeps previous data intact when the buffer grows resize_destructive destroys the previous data when the buffer grows
2022-12-19Merge pull request #9480 from jbeich/vk-238liamwhite
externals: update Vulkan-Headers to v1.3.238 to fix -Werror=switch with system package
2022-12-19tests: Add ScratchBuffer testsameerj
2022-12-19dma_pusher: Rework command_headers usageameerj
Uses ScratchBuffer and avoids overwriting the command_headers buffer with the prefetch_command_list
2022-12-19buffer_cache: Use Common::ScratchBuffer for ImmediateBuffer usageameerj
2022-12-19video_core: Add usages of ScratchBufferameerj
2022-12-19common: Add ScratchBuffer classameerj
This class creates a default initialized heap allocated buffer for cases where value initializing members during allocation or resize is redundant.