summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-01-28common: common_funcs: Add useful kernel macro R_SUCCEED_IF.bunnei
2021-01-28core: hle: kernel: object: Implement Finalize() virtual method.bunnei
2021-01-28core: hle: kernel: svc_results: Populate with several missing error codes.bunnei
2021-01-28core: hle: kernel: Implement KLightLock.bunnei
2021-01-28core: hle: kernel: Implement KThreadQueue.bunnei
2021-01-28common: common_funcs: Add a few more useful macros for kernel code.bunnei
2021-01-28hle: kernel: KThread: Clean up thread priorities.bunnei
2021-01-28hle: kernel: KThread: Reorganize thread priority defaults.bunnei
2021-01-28hle: kernel: KThread: Fix ThreadType definition.bunnei
2021-01-28hle: kernel: Move single core "phantom mode" out of KThread.bunnei
- This is a workaround that does not belong in a kernel primitive.
2021-01-28hle: kernel: KThread: Remove thread types that do not exist.bunnei
2021-01-28arm: arm_dynarmic: Skip calls when JIT is invalid.bunnei
- This can happen if called from an idle or suspension thread.
2021-01-28core: hle: kernel: Rename Thread to KThread.bunnei
2021-01-28Merge pull request #5837 from german77/socketstubbunnei
sockets: Stub GetSockOpt
2021-01-28Merge pull request #5831 from MerryMage/isbLC
dynarmic: Do not flush cache when executing an ISB instruction
2021-01-28Merge pull request #5836 from ReinUsesLisp/unaligned-constr-schedLC
vk_scheduler: Fix unaligned placement new expressions
2021-01-28Merge pull request #5840 from Morph1984/prepo-fixLC
prepo: Fix BufferDescriptorX invalid buffer index errors and add New variants of SaveReport
2021-01-28Merge pull request #5835 from Morph1984/cleanup-sixaxis-fusionLC
hid: Cleanup SixAxisFusionParameters
2021-01-28hid: Add static_assert for Parameter sizeMorph
2021-01-28prepo: Fix BufferDescriptorX invalid buffer errors and add "New" variants of ↵Morph
SaveReport The second input buffer could be optional when prepo/srepo is called, test for the availability of the second buffer prior to reading from it.
2021-01-28hle_ipc: Add Can(Read, Write)BufferMorph
Allows us to test whether a buffer can be read from or written to memory
2021-01-27Stub GetSockOptgerman
2021-01-27vk_scheduler: Fix unaligned placement new expressionsReinUsesLisp
We were accidentaly creating an object in an unaligned memory address. Fix this by manually aligning the offset.
2021-01-27Merge pull request #5786 from ReinUsesLisp/glsl-cbufbunnei
gl_shader_decompiler: Fix constant buffer size calculation
2021-01-27vulkan_device: Blacklist Intel from float16 math (#5798)Rodrigo Locatti
Astral Chain crashes Intel's SPIR-V compiler when using fp16. Disable this while the vendor works on a fix.
2021-01-27Merge pull request #5778 from ReinUsesLisp/shader-dirbunnei
renderer_opengl: Avoid precompiled cache and force NV GL cache directory
2021-01-27npad: Remove unused device handle parameterMorph
2021-01-26Merge pull request #5812 from german77/StubSixaxisFusionbunnei
HID: Stub Set/Get/Reset SixaxisSensorFusionParameters
2021-01-26externals: Update dynarmic to 0f27368fMerryMage
2021-01-26Merge pull request #5810 from ogniK5377/stereo-visionbunnei
hle: Implement remaining services for Stereo Vision
2021-01-26Merge pull request #5824 from ogniK5377/IPsmSessionbunnei
psm: IPsmSession
2021-01-25Merge pull request #5774 from ogniK5377/mii-raw-randombunnei
mii: Fix BuildRandomStoreData & Cleanup raw_data
2021-01-25Merge pull request #5771 from ogniK5377/lm-reworkbunnei
lm: Recode LM service
2021-01-25Omit system referenceChloe Marcec
2021-01-25psm: IPsmSessionChloe Marcec
Used by homebrew menu
2021-01-24Merge pull request #5799 from ogniK5377/event-register-unregisterbunnei
nvdrv: Unregister already registered events
2021-01-24Merge pull request #5785 from ReinUsesLisp/buffer-dmabunnei
video_core/memory_manager: Flush destination buffer on CopyBlock
2021-01-25Merge pull request #5823 from ReinUsesLisp/revert-flagsRodrigo Locatti
Revert "Start of Integer flags implementation"
2021-01-25Revert "Start of Integer flags implementation"ReinUsesLisp
This reverts #4713. The implementation in that PR is not accurate. It does not reflect the behavior seen in hardware.
2021-01-24Merge pull request #5819 from ReinUsesLisp/cull-mode-castbunnei
vk_graphics_pipeline: Fix narrowing conversion on MSVC
2021-01-24vk_graphics_pipeline: Fix narrowing conversion on MSVCReinUsesLisp
2021-01-24Merge pull request #5807 from ReinUsesLisp/vc-warningsLC
video_core: Silence the remaining gcc warnings and enforce them
2021-01-24Merge pull request #5363 from ReinUsesLisp/vk-image-usageRodrigo Locatti
vk_texture_cache: Support image store on sRGB images with VkImageViewUsageCreateInfo
2021-01-24Merge pull request #5151 from comex/xx-vfsbunnei
vfs_real: When moving files or directories, don't assume file opening will succeed
2021-01-24vk_texture_cache: Support image store on sRGB images with ↵ReinUsesLisp
VkImageViewUsageCreateInfo Vulkan 1.0 didn't support creating sRGB image views on an ABGR8 VkImage with storage usage bits. VK_KHR_maintenance2 addressed this allowing to reduce the usage bits on a VkImageView. To allow image store on non-sRGB image views when the VkImage is created with sRGB, always create VkImages without sRGB and add the sRGB format on the view.
2021-01-24Merge pull request #5814 from ReinUsesLisp/remove-rdna-dynstateLC
vulkan_device: Lift VK_EXT_extended_dynamic_state blacklist on RDNA
2021-01-24vulkan_device: Lift VK_EXT_extended_dynamic_state blacklist on RDNAReinUsesLisp
It seems to be safe to use this on new drivers.
2021-01-24cmake: Enforce -Warray-bounds and -Wmissing-field-initializers globallyReinUsesLisp
2021-01-24Merge pull request #5796 from ReinUsesLisp/vertex-a-bypass-vkbunnei
vk_pipeline_cache: Properly bypass VertexA shaders
2021-01-24Stub Set/Get/Reset SixaxisSensorFusionParametersgerman