summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* hle_ipc: Rename ReadBufferSpan to ReadBufferGravatar ameerj2022-12-2833-97/+97
|
* hle_ipc: Rename ReadBuffer to ReadBufferCopyGravatar ameerj2022-12-283-4/+6
| | | | Indicates explicitly that a copy is occurring
* bsd: Use std::span for read payloadsGravatar ameerj2022-12-286-36/+38
| | | | Allows the use of HLERequestContext::ReadBufferSpan
* nvdrv: Use std::span for inputsGravatar ameerj2022-12-2824-211/+209
| | | | Allows the use of HLERequestContext::ReadBufferSpan
* hidbus: Use ReadBufferSpanGravatar ameerj2022-12-2811-12/+16
|
* nvflinger: Split Parcel class into InputParcel and OutputParcelGravatar ameerj2022-12-255-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 soGravatar ameerj2022-12-2531-77/+78
|
* fsp_srv: Use ReadBufferSpanGravatar ameerj2022-12-253-19/+17
|
* hle_ipc: Add ReadBufferSpan functionGravatar ameerj2022-12-252-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-shutdownGravatar liamwhite2022-12-252-5/+12
|\ | | | | qt: prevent reentrant shutdown
| * qt: prevent reentrant shutdownGravatar Liam2022-12-242-5/+12
| |
* | Merge pull request #9496 from liamwhite/shm3Gravatar liamwhite2022-12-253-58/+62
|\ \ | | | | | | kernel: workaround static shared memory initialization
| * | kernel: workaround static shared memory initializationGravatar Liam2022-12-233-58/+62
| | |
* | | Merge pull request #9487 from liamwhite/look-at-the-timeGravatar liamwhite2022-12-253-40/+65
|\ \ \ | | | | | | | | time: add LockFreeAtomicType
| * | | time: add LockFreeAtomicTypeGravatar Liam2022-12-213-40/+65
| |/ /
* | | Merge pull request #9453 from ameerj/scratch-vectorGravatar Fernando S2022-12-2414-56/+370
|\ \ \ | |_|/ |/| | common: Add ScratchBuffer Class
| * | scratch_buffer: Explicitly defing resize and resize_destructive functionsGravatar ameerj2022-12-197-19/+108
| | | | | | | | | | | | | | | resize keeps previous data intact when the buffer grows resize_destructive destroys the previous data when the buffer grows
| * | tests: Add ScratchBuffer testsGravatar ameerj2022-12-193-5/+137
| | |
| * | dma_pusher: Rework command_headers usageGravatar ameerj2022-12-192-9/+16
| | | | | | | | | | | | Uses ScratchBuffer and avoids overwriting the command_headers buffer with the prefetch_command_list
| * | buffer_cache: Use Common::ScratchBuffer for ImmediateBuffer usageGravatar ameerj2022-12-191-7/+4
| | |
| * | video_core: Add usages of ScratchBufferGravatar ameerj2022-12-194-33/+21
| | |
| * | common: Add ScratchBuffer classGravatar ameerj2022-12-192-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_overwriteGravatar ameerj2022-12-192-0/+26
| | |
* | | qt: fix 'Pause' menu item (#9497)Gravatar liamwhite2022-12-231-1/+1
| | |
* | | Disable automatically opening the console on windows yuzu-cmd builds (#9485)Gravatar Chris Oboe2022-12-232-0/+16
| | | | | | | | | | | | | | | * don't automatically open the console on windows build of yuzu-cmd * fix formatting
* | | Merge pull request #9476 from liamwhite/async-shutdownGravatar liamwhite2022-12-234-15/+65
|\ \ \ | | | | | | | | qt: continue event loop during game close
| * | | qt: fix uninitialized memory usageGravatar Liam2022-12-231-1/+1
| | | |
| * | | qt: use main window as close overlay parentGravatar Liam2022-12-212-4/+4
| | | |
| * | | qt: continue event loop during game closeGravatar Liam2022-12-204-14/+64
| | |/ | |/|
* | | Merge pull request #9486 from liamwhite/shutdown-hellGravatar Morph2022-12-232-1/+9
|\ \ \ | |/ / |/| | qt: exit properly on guest-initiated close
| * | qt: exit properly on guest-initiated closeGravatar Liam2022-12-212-1/+9
|/ /
* | Merge pull request #9463 from liamwhite/manager-eventsGravatar liamwhite2022-12-206-173/+65
|\ \ | | | | | | EmuThread: refactor
| * | qt: use _exit instead of exit on SIGINTGravatar Liam2022-12-171-1/+1
| | |
| * | EmuThread: refactorGravatar Liam2022-12-176-172/+64
| | |
* | | Merge pull request #9482 from liamwhite/vkbumpGravatar Mai2022-12-201-1/+1
|\ \ \ | | | | | | | | CMakeLists: bump required Vulkan package version to 1.3.238
| * | | CMakeLists: bump required Vulkan package version to 1.3.238Gravatar Liam2022-12-191-1/+1
|/ / /
* | | Merge pull request #9480 from jbeich/vk-238Gravatar liamwhite2022-12-192-0/+12
|\ \ \ | |_|/ |/| | externals: update Vulkan-Headers to v1.3.238 to fix -Werror=switch with system package
| * | externals: update Vulkan-Headers to v1.3.238Gravatar Jan Beich2022-12-192-0/+12
| | |
* | | Merge pull request #9474 from liamwhite/timerGravatar Matías Locatti2022-12-1913-109/+290
|\ \ \ | |/ / |/| | kernel: add KHardwareTimer
| * | kernel: remove TimeManagerGravatar Liam2022-12-1811-117/+33
| | |
| * | kernel: add KHardwareTimerGravatar Liam2022-12-186-6/+271
| | |
* | | Merge pull request #9471 from german77/inputGravatar liamwhite2022-12-192-206/+83
|\ \ \ | | | | | | | | input_common: Cleanup project
| * | | input_common: Cleanup projectGravatar german772022-12-182-206/+83
| | | |
* | | | Merge pull request #9477 from Morph1984/overlaydialogGravatar liamwhite2022-12-191-1/+11
|\ \ \ \ | |_|/ / |/| | | overlay_dialog: Hide button dialog box when both buttons are hidden
| * | | overlay_dialog: Avoid starting the input thread if non-interactiveGravatar Morph2022-12-191-1/+3
| | | |
| * | | overlay_dialog: Hide button dialog box when both buttons are hiddenGravatar Morph2022-12-181-0/+8
|/ / / | | | | | | | | | This allows for the creation of a non-interactive dialog overlay to display system messages.
* | | Merge pull request #9470 from german77/silenceIkillYouGravatar liamwhite2022-12-182-2/+2
|\ \ \ | | | | | | | | service: nfc: Silence ListDevices
| * | | service: nfc: Silence ListDevicesGravatar german772022-12-182-2/+2
| |/ /
* | | Merge pull request #9469 from Rubo3/patch-1Gravatar liamwhite2022-12-181-1/+1
|\ \ \ | | | | | | | | Use execlp instead of execl to avoid failure
| * | | Use execlp instead of execl to avoid failureGravatar Marco Rubin2022-12-181-1/+1
| |/ /