| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | hle_ipc: Rename ReadBufferSpan to ReadBuffer | 2022-12-28 | 33 | -97/+97 | |
| | | |||||
| * | hle_ipc: Rename ReadBuffer to ReadBufferCopy | 2022-12-28 | 3 | -4/+6 | |
| | | | | | Indicates explicitly that a copy is occurring | ||||
| * | bsd: Use std::span for read payloads | 2022-12-28 | 6 | -36/+38 | |
| | | | | | Allows the use of HLERequestContext::ReadBufferSpan | ||||
| * | nvdrv: Use std::span for inputs | 2022-12-28 | 24 | -211/+209 | |
| | | | | | Allows the use of HLERequestContext::ReadBufferSpan | ||||
| * | hidbus: Use ReadBufferSpan | 2022-12-28 | 11 | -12/+16 | |
| | | |||||
| * | nvflinger: Split Parcel class into InputParcel and OutputParcel | 2022-12-25 | 5 | -48/+53 | |
| | | | | | | 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. | ||||
| * | service: Use ReadBufferSpan where it is trivial to do so | 2022-12-25 | 31 | -77/+78 | |
| | | |||||
| * | fsp_srv: Use ReadBufferSpan | 2022-12-25 | 3 | -19/+17 | |
| | | |||||
| * | hle_ipc: Add ReadBufferSpan function | 2022-12-25 | 2 | -0/+22 | |
| | | | | | Returns a std::span to the buffer address, rather than create a copy of the memory into a std::vector | ||||
| * | Merge pull request #9500 from liamwhite/reentrant-shutdown | 2022-12-25 | 2 | -5/+12 | |
| |\ | | | | | qt: prevent reentrant shutdown | ||||
| | * | qt: prevent reentrant shutdown | 2022-12-24 | 2 | -5/+12 | |
| | | | |||||
| * | | Merge pull request #9496 from liamwhite/shm3 | 2022-12-25 | 3 | -58/+62 | |
| |\ \ | | | | | | | kernel: workaround static shared memory initialization | ||||
| | * | | kernel: workaround static shared memory initialization | 2022-12-23 | 3 | -58/+62 | |
| | | | | |||||
| * | | | Merge pull request #9487 from liamwhite/look-at-the-time | 2022-12-25 | 3 | -40/+65 | |
| |\ \ \ | | | | | | | | | time: add LockFreeAtomicType | ||||
| | * | | | time: add LockFreeAtomicType | 2022-12-21 | 3 | -40/+65 | |
| | |/ / | |||||
| * | | | Merge pull request #9453 from ameerj/scratch-vector | 2022-12-24 | 14 | -56/+370 | |
| |\ \ \ | |_|/ |/| | | common: Add ScratchBuffer Class | ||||
| | * | | scratch_buffer: Explicitly defing resize and resize_destructive functions | 2022-12-19 | 7 | -19/+108 | |
| | | | | | | | | | | | | | | | | resize keeps previous data intact when the buffer grows resize_destructive destroys the previous data when the buffer grows | ||||
| | * | | tests: Add ScratchBuffer tests | 2022-12-19 | 3 | -5/+137 | |
| | | | | |||||
| | * | | dma_pusher: Rework command_headers usage | 2022-12-19 | 2 | -9/+16 | |
| | | | | | | | | | | | | | Uses ScratchBuffer and avoids overwriting the command_headers buffer with the prefetch_command_list | ||||
| | * | | buffer_cache: Use Common::ScratchBuffer for ImmediateBuffer usage | 2022-12-19 | 1 | -7/+4 | |
| | | | | |||||
| | * | | video_core: Add usages of ScratchBuffer | 2022-12-19 | 4 | -33/+21 | |
| | | | | |||||
| | * | | common: Add ScratchBuffer class | 2022-12-19 | 2 | -0/+75 | |
| | | | | | | | | | | | | | | | | This class creates a default initialized heap allocated buffer for cases where value initializing members during allocation or resize is redundant. | ||||
| | * | | common: add make_unique_for_overwrite | 2022-12-19 | 2 | -0/+26 | |
| | | | | |||||
| * | | | qt: fix 'Pause' menu item (#9497) | 2022-12-23 | 1 | -1/+1 | |
| | | | | |||||
| * | | | Disable automatically opening the console on windows yuzu-cmd builds (#9485) | 2022-12-23 | 2 | -0/+16 | |
| | | | | | | | | | | | | | | | | * don't automatically open the console on windows build of yuzu-cmd * fix formatting | ||||
| * | | | Merge pull request #9476 from liamwhite/async-shutdown | 2022-12-23 | 4 | -15/+65 | |
| |\ \ \ | | | | | | | | | qt: continue event loop during game close | ||||
| | * | | | qt: fix uninitialized memory usage | 2022-12-23 | 1 | -1/+1 | |
| | | | | | |||||
| | * | | | qt: use main window as close overlay parent | 2022-12-21 | 2 | -4/+4 | |
| | | | | | |||||
| | * | | | qt: continue event loop during game close | 2022-12-20 | 4 | -14/+64 | |
| | | |/ | |/| | |||||
| * | | | Merge pull request #9486 from liamwhite/shutdown-hell | 2022-12-23 | 2 | -1/+9 | |
| |\ \ \ | |/ / |/| | | qt: exit properly on guest-initiated close | ||||
| | * | | qt: exit properly on guest-initiated close | 2022-12-21 | 2 | -1/+9 | |
| |/ / | |||||
| * | | Merge pull request #9463 from liamwhite/manager-events | 2022-12-20 | 6 | -173/+65 | |
| |\ \ | | | | | | | EmuThread: refactor | ||||
| | * | | qt: use _exit instead of exit on SIGINT | 2022-12-17 | 1 | -1/+1 | |
| | | | | |||||
| | * | | EmuThread: refactor | 2022-12-17 | 6 | -172/+64 | |
| | | | | |||||
| * | | | Merge pull request #9482 from liamwhite/vkbump | 2022-12-20 | 1 | -1/+1 | |
| |\ \ \ | | | | | | | | | CMakeLists: bump required Vulkan package version to 1.3.238 | ||||
| | * | | | CMakeLists: bump required Vulkan package version to 1.3.238 | 2022-12-19 | 1 | -1/+1 | |
| |/ / / | |||||
| * | | | Merge pull request #9480 from jbeich/vk-238 | 2022-12-19 | 2 | -0/+12 | |
| |\ \ \ | |_|/ |/| | | externals: update Vulkan-Headers to v1.3.238 to fix -Werror=switch with system package | ||||
| | * | | externals: update Vulkan-Headers to v1.3.238 | 2022-12-19 | 2 | -0/+12 | |
| | | | | |||||
| * | | | Merge pull request #9474 from liamwhite/timer | 2022-12-19 | 13 | -109/+290 | |
| |\ \ \ | |/ / |/| | | kernel: add KHardwareTimer | ||||
| | * | | kernel: remove TimeManager | 2022-12-18 | 11 | -117/+33 | |
| | | | | |||||
| | * | | kernel: add KHardwareTimer | 2022-12-18 | 6 | -6/+271 | |
| | | | | |||||
| * | | | Merge pull request #9471 from german77/input | 2022-12-19 | 2 | -206/+83 | |
| |\ \ \ | | | | | | | | | input_common: Cleanup project | ||||
| | * | | | input_common: Cleanup project | 2022-12-18 | 2 | -206/+83 | |
| | | | | | |||||
| * | | | | Merge pull request #9477 from Morph1984/overlaydialog | 2022-12-19 | 1 | -1/+11 | |
| |\ \ \ \ | |_|/ / |/| | | | overlay_dialog: Hide button dialog box when both buttons are hidden | ||||
| | * | | | overlay_dialog: Avoid starting the input thread if non-interactive | 2022-12-19 | 1 | -1/+3 | |
| | | | | | |||||
| | * | | | overlay_dialog: Hide button dialog box when both buttons are hidden | 2022-12-18 | 1 | -0/+8 | |
| |/ / / | | | | | | | | | | This allows for the creation of a non-interactive dialog overlay to display system messages. | ||||
| * | | | Merge pull request #9470 from german77/silenceIkillYou | 2022-12-18 | 2 | -2/+2 | |
| |\ \ \ | | | | | | | | | service: nfc: Silence ListDevices | ||||
| | * | | | service: nfc: Silence ListDevices | 2022-12-18 | 2 | -2/+2 | |
| | |/ / | |||||
| * | | | Merge pull request #9469 from Rubo3/patch-1 | 2022-12-18 | 1 | -1/+1 | |
| |\ \ \ | | | | | | | | | Use execlp instead of execl to avoid failure | ||||
| | * | | | Use execlp instead of execl to avoid failure | 2022-12-18 | 1 | -1/+1 | |
| | |/ / | |||||