aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2021-03-30Merge pull request #6124 from jbeich/vulkan+openglbunnei
vulkan_common: enable OpenGL interop on other Unices
2021-03-30nvdrv: Cleanup CDMA Processor on device closureChloe Marcec
Brings us a step closer to unifying all channels to share a common interface.
2021-03-30Addressed issuesChloe Marcec
2021-03-29Merge pull request #6109 from german77/gestureIDbunnei
HID: Initialize correctly the gesture finger_id and filter invalid inputs
2021-03-30vulkan_common: enable OpenGL interop on other UnicesJan Beich
2021-03-29Merge pull request #6102 from ogniK5377/fd-passbunnei
nvdrv: Pass device fd and handle device create methods for device opening and closing
2021-03-28Merge pull request #6115 from bunnei/fix-kernel-initbunnei
hle: kernel: Initialize preemption task after schedulers.
2021-03-27yuzu/main: Add user command line argumentgerman77
2021-03-27hle: kernel: Initialize preemption task after schedulers.bunnei
- Fixes a startup crash that occurs if CoreTiming tries to preempt before kernel initialization completes.
2021-03-27service: friend: Change logging class from ACC to FriendMorph
2021-03-27Friend: Stub GetPlayHistoryRegistrationKeygerman77
2021-03-26HID: Initialize correctly the gesture finger_id and filter invalid resultsNarr the Reg
2021-03-27pctl: Rework how pctl works to be more accurateChloe Marcec
Introduces the usage of compatibilities to allow it the module to be closer to how it works on hardware.
2021-03-25astc_decoder: Refactor for style and more efficient memory useameerj
2021-03-25nvdrv: Pass device fd and handle device create methods for device opening ↵Chloe Marcec
and closing We pass the fd to the ioctl as well as alert the device when it's opened or closed to allow for fd unique actions to take place
2021-03-24Merge pull request #6101 from ogniK5377/alloc-as-exbunnei
nvdrv: Change InitializeEx to AllocAsEx
2021-03-24gl_device: unblock async shaders on other Unix systemsJan Beich
Mesa is the primary OpenGL provider on all FreeDesktop systems. For example, iris is used on Intel GPU + FreeBSD by default.
2021-03-24arm_dynarmic: Always have a 'valid' jit instanceMerryMage
2021-03-23hle: kernel: Breakup InitializeMemoryLayout.bunnei
2021-03-23hle: kernel: k_memory_region_type: Minor code cleanup.bunnei
2021-03-23hle: kernel: k_memory_region: Minor code cleanup.bunnei
2021-03-23hle: kernel: k_memory_layout: Use pair instead of tuple.bunnei
2021-03-23hle: kernel: k_system_control: Remove unnecessary inline.bunnei
2021-03-23common: common_sizes: Move sizes to the Common namespace.bunnei
2021-03-23Merge pull request #6100 from bunnei/arm-fixbunnei
core: arm_dynarmic: Ensure JIT state is saved/restored on page table changes.
2021-03-22Merge pull request #6092 from ivan-boikov/cancel-dir-selectbunnei
Fix cancelation of getExistingDirectory dialog
2021-03-22nvdrv: Change InitializeEx to AllocAsExChloe Marcec
Wee also report the correct "big page size" now in GetVARegions & fix up the struct for IoctlAllocAsEx
2021-03-21Merge pull request #6095 from lat9nq/async-shader-blockLC
gl_device: Block async shaders on AMD and Intel
2021-03-21hle: kernel: Merge KMemoryRegionAttr and KMemoryRegionType.bunnei
- Fixes clang errors with mixed enum arithmetic.
2021-03-21hle: kernel: Remove unused variable.bunnei
2021-03-21hle: kernel: k_memory_region_type: Remove extra ".bunnei
2021-03-21core: arm_dynarmic: Ensure JIT state is saved/restored on page table changes.bunnei
- We re-create the JIT here without preserving any state.
2021-03-21hle: kernel: k_memory_layout: Move KMemoryRegionAllocator out of global.bunnei
2021-03-21hle: kernel: k_memory_layout: Derive memory regions based on board layout.bunnei
2021-03-21common: common_sizes: Move Invalid to Size_* prefix and add missing values.bunnei
2021-03-21hle: kernel: k_memory_region: Refactor to simplify code.bunnei
2021-03-21hle: kernel: board: k_system_control: Extend to include memory region sizes.bunnei
2021-03-21hle: kernel: board: Add secure_monitor module.bunnei
2021-03-21common: Move common sizes to their own header for code reuse.bunnei
2021-03-21hle: kernel: k_address_space_info: Cleanup.bunnei
2021-03-21hle: kernel: Add k_trace module.bunnei
2021-03-21hle: kernel: KSystemControl: Update to reflect board-specific behavior.bunnei
2021-03-21hle: kernel: KMemoryManager: Add CalculateManagementOverheadSize.bunnei
2021-03-21hle: kernel: KMemoryManager: Add aliases.bunnei
2021-03-21hle: kernel: Add architecture and board specific memory regions.bunnei
2021-03-21hle: kernel: KMemoryRegion: Derive region values.bunnei
2021-03-21hle: kernel: Migrate some code from Common::SpinLock to KSpinLock.bunnei
2021-03-21hle: kernel: Add initial KMemoryRegionType module.bunnei
2021-03-21hle: kernel: Move KMemoryRegion to its own module and update.bunnei
2021-03-21gl_device: Block async shaders on AMD and Intellat9nq
Currently, the Windows versions of the Intel OpenGL driver and the AMD proprietary OpenGL driver do not properly support (or in fact degrade) when asynchronous shader compilation is enabled. This blocks specifically those drivers from using this feature. This affects AMDGPU-PRO on Linux, and AMD's and Intel's OpenGL drivers on Windows.