summaryrefslogtreecommitdiff
path: root/src (follow)
Commit message (Expand)AuthorAgeFilesLines
* hle: service: sm: Remove manual tracking of KServerPorts.Gravatar bunnei2022-04-082-8/+1
* hle: kernel: hle_ipc: HasSessionRequestHandler: Check if domain handler is ex...Gravatar bunnei2022-04-081-1/+1
* Merge pull request #8169 from merryhime/scoped_lockGravatar bunnei2022-04-0829-105/+105
|\
| * core/hle: Standardize scoped_lock initializersGravatar Merry2022-04-075-23/+23
| * yuzu/util: Replace lock_guard with scoped_lockGravatar Merry2022-04-071-1/+1
| * web_service: Replace lock_guard with scoped_lockGravatar Merry2022-04-071-2/+2
| * video_core: Replace lock_guard with scoped_lockGravatar Merry2022-04-0711-18/+18
| * input_common: Replace lock_guard with scoped_lockGravatar Merry2022-04-072-29/+29
| * core: Replace lock_guard with scoped_lockGravatar Merry2022-04-072-14/+14
| * core/hle: Replace lock_guard with scoped_lockGravatar Merry2022-04-074-13/+13
| * common: Replace lock_guard with scoped_lockGravatar Merry2022-04-073-5/+5
* | CMakeLists: Enforce C4505 and C5245Gravatar Morph2022-04-071-0/+2
* | Merge pull request #8167 from Tachi107/patch-1Gravatar merry2022-04-071-2/+0
|\ \ | |/ |/|
| * fix: remove #pragma once in .cpp fileGravatar Andrea Pappacoda2022-04-071-2/+0
* | Merge pull request #8161 from liamwhite/gl-s8d24Gravatar Fernando S2022-04-076-4/+58
|\ \
| * | OpenGL: fix S8D24 to ABGR8 conversionsGravatar Liam2022-04-066-4/+58
* | | Merge pull request #8152 from liamwhite/gl-cropGravatar Fernando S2022-04-073-1/+10
|\ \ \
| * | | OpenGL: fix croppingGravatar Liam2022-04-043-1/+10
* | | | Merge pull request #8150 from liamwhite/vk-cropGravatar Fernando S2022-04-071-2/+3
|\ \ \ \
| * | | | Vulkan: crop to screen dimensions if crop not explicitly requestedGravatar Liam2022-04-041-2/+3
| |/ / /
* | | | Merge pull request #8148 from merryhime/interruptsGravatar Fernando S2022-04-076-45/+42
|\ \ \ \
| * | | | arm_dynarmic: Use HaltReason for svc calls and reschedulesGravatar merry2022-04-034-27/+19
| * | | | dynarmic: Better interruptsGravatar merry2022-04-036-22/+27
* | | | | Merge pull request #8143 from merryhime/rdtscGravatar Fernando S2022-04-071-14/+35
|\ \ \ \ \
| * | | | | native_clock: Internal linkage for FencedRDTSCGravatar Merry2022-04-031-2/+4
| * | | | | native_clock: Use lfence with rdtscGravatar merry2022-04-031-14/+33
| | |/ / / | |/| | |
* | | | | Merge pull request #8133 from liamwhite/gl-spv-cbufGravatar Fernando S2022-04-076-25/+51
|\ \ \ \ \ | |_|_|_|/ |/| | | |
| * | | | shader_recompiler: Decrease indirect cbuf limit to match hardwareGravatar Liam2022-04-041-1/+1
| * | | | shader_compiler: support const buffer indirect addressing in GLSLGravatar Liam2022-04-014-9/+38
| * | | | shader_recompiler: support const buffer indirect addressing on OpenGL SPIR-VGravatar Liam2022-04-013-17/+14
* | | | | Merge pull request #8164 from liamwhite/jit-stubGravatar bunnei2022-04-068-1/+88
|\ \ \ \ \
| * | | | | service: jit: stub JIT serviceGravatar Liam2022-04-068-1/+88
* | | | | | Merge pull request #8122 from bunnei/improve-thread-usageGravatar bunnei2022-04-0613-27/+74
|\ \ \ \ \ \ | |/ / / / / |/| | | | |
| * | | | | hle: service: nvdrv: Create a service thread where appropriate.Gravatar Morph2022-04-021-1/+1
| * | | | | hle: service: vi: Create a service thread where appropriate.Gravatar bunnei2022-04-021-1/+2
| * | | | | hle: service: bsd: Create a service thread where appropriate.Gravatar bunnei2022-04-021-1/+2
| * | | | | hle: service: filesystem: Create a service thread where appropriate.Gravatar bunnei2022-04-021-5/+8
| * | | | | hle: service: audio: Create a service thread where appropriate.Gravatar bunnei2022-04-022-4/+6
| * | | | | hle: service: Add option for service interfaces to create or use the default ...Gravatar bunnei2022-04-025-11/+29
| * | | | | hle: kernel: Create a default thread for services that do not need their own ...Gravatar bunnei2022-04-022-4/+26
| | |_|/ / | |/| | |
* | | | | service: hid: Partially revert #8123Gravatar german772022-04-051-0/+4
* | | | | Merge pull request #8137 from bunnei/improve-nvflinger-2Gravatar bunnei2022-04-059-91/+99
|\ \ \ \ \ | |_|_|_|/ |/| | | |
| * | | | hle: service: nvflinger: buffer_queue_producer: Cleanup & fixes.Gravatar bunnei2022-04-012-61/+42
| * | | | hle: service: nvflinger: consumer_base: Cleanup & fixes.Gravatar bunnei2022-04-012-15/+17
| * | | | hle: service: nvflinger: buffer_queue_producer: Cleanup & add GetReleasedBuff...Gravatar bunnei2022-04-012-10/+38
| * | | | hle: service: nvflinger: buffer_queue_core: Cleanup & fixes.Gravatar bunnei2022-04-012-3/+0
| * | | | hle: service: nvflinger: Use correct logger namespace.Gravatar bunnei2022-04-011-2/+2
| |/ / /
* | | | Merge pull request #8100 from Morph1984/registered-crashGravatar bunnei2022-04-051-2/+4
|\ \ \ \
| * | | | registered_cache: Prevent nullptr dereference when accumulating filesGravatar Morph2022-03-271-2/+4
* | | | | Merge pull request #8159 from merryhime/pstGravatar Mai M2022-04-052-0/+4
|\ \ \ \ \