summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2022-12-28hle_ipc: Rename ReadBufferSpan to ReadBufferameerj
2022-12-28hle_ipc: Rename ReadBuffer to ReadBufferCopyameerj
Indicates explicitly that a copy is occurring
2022-12-28bsd: Use std::span for read payloadsameerj
Allows the use of HLERequestContext::ReadBufferSpan
2022-12-28nvdrv: Use std::span for inputsameerj
Allows the use of HLERequestContext::ReadBufferSpan
2022-12-28hidbus: Use ReadBufferSpanameerj
2022-12-25nvflinger: Split Parcel class into InputParcel and OutputParcelameerj
The usages of the Parcel class were already unique to either Read or Write operations. Avoids needing a vector of the input payload for the InputParcel use-case, instead it can remain as a span.
2022-12-25service: Use ReadBufferSpan where it is trivial to do soameerj
2022-12-25fsp_srv: Use ReadBufferSpanameerj
2022-12-25hle_ipc: Add ReadBufferSpan functionameerj
Returns a std::span to the buffer address, rather than create a copy of the memory into a std::vector
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-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.
2022-12-19common: add make_unique_for_overwriteameerj
2022-12-19Merge pull request #9474 from liamwhite/timerMatías Locatti
kernel: add KHardwareTimer
2022-12-19externals: update Vulkan-Headers to v1.3.238Jan Beich
2022-12-19Merge pull request #9471 from german77/inputliamwhite
input_common: Cleanup project
2022-12-19overlay_dialog: Avoid starting the input thread if non-interactiveMorph
2022-12-18overlay_dialog: Hide button dialog box when both buttons are hiddenMorph
This allows for the creation of a non-interactive dialog overlay to display system messages.
2022-12-18kernel: remove TimeManagerLiam
2022-12-18kernel: add KHardwareTimerLiam
2022-12-18input_common: Cleanup projectgerman77
2022-12-18Merge pull request #9470 from german77/silenceIkillYouliamwhite
service: nfc: Silence ListDevices
2022-12-18service: nfc: Silence ListDevicesgerman77
2022-12-18Merge pull request #9469 from Rubo3/patch-1liamwhite
Use execlp instead of execl to avoid failure
2022-12-18Merge pull request #9467 from german77/folderliamwhite
yuzu: Remember last selected directory
2022-12-18Use execlp instead of execl to avoid failureMarco Rubin
2022-12-18yuzu: Remember last selected directorygerman77
2022-12-18bootmanager: Use proper camera sizegerman77
2022-12-17bootmanager: Encapsulate all QCamera codegerman77
2022-12-17yuzu: fix device name settinggerman77
2022-12-17Enable 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