aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-01-26"Merge Tagged PR 6598"mainline-0-892yuzubot
2022-01-26"Merge Tagged PR 7346"yuzubot
2022-01-26"Merge Tagged PR 7497"yuzubot
2022-01-25Merge pull request #7769 from german77/no-controlbunnei
yuzu: Add setting to disable controller navigation
2022-01-25Merge pull request #7768 from Moonlacer/fsr-1.0.2bunnei
Update AMD FidelityFX Super Resolution™ to 1.0.2
2022-01-25Merge pull request #7777 from lioncash/nodiscMorph
shader_recompiler: Remove unnecessary [[nodiscard]] specifier
2022-01-25Merge pull request #7779 from lioncash/gpu-ifaceMorph
gpu: Remove obsoleted CDmaPusher() accessors
2022-01-25Merge pull request #7778 from lioncash/commaMorph
vk_fsr: Replace comma operator with semicolon
2022-01-25Merge pull request #7774 from lioncash/mappingMorph
input_common/main: Pass MappingData by const reference in callbacks
2022-01-25Merge pull request #7773 from lioncash/udp-deprecatedMorph
input_common/udp_client: Replace deprecated from_string()/to_ulong() functions
2022-01-25Merge pull request #7771 from lioncash/assertMorph
kernel/k_affinity_mask: Remove duplicated assert
2022-01-25gpu: Tidy up forward declarationsLioncash
Over time a few forward declarations became unnecessary, so we can remove these to tidy up the header a little bit.
2022-01-25gpu: Remove obsoleted CDMAPusher() accessorsLioncash
These were obsoleted in 2c47f8aa1886522898b5b3a73185b5662be3e9f3 but were accidentally overlooked.
2022-01-25vk_fsr: Replace comma operator with semicolonLioncash
Generally, we should be ending statements with a semicolon not a comma Resolves a clang diagnostic.
2022-01-25shader_recompiler: Remove unnecessary [[nodiscard]]Lioncash
Since ConvertLegacyToGeneric has a void return value, there's nothing that is actually returned by the function.
2022-01-24Merge pull request #7765 from bunnei/update-thread-countbunnei
hle: kernel: KThread: Improve Increment/Decrement RunningThreadCount.
2022-01-24Merge pull request #7760 from german77/inverted_keyboardbunnei
yuzu: Add modifiers for keyboard
2022-01-24input_common/input_engine: Ensure PadIdentifier UUIDs have a valid initial stateLioncash
The default constructor of a UUID instance doesn't initialize the underlying array.
2022-01-24input_common/input_mapping: Simplify UUID validity checksLioncash
Makes the checks a little more intuitive to read and doesn't construct an extra UUID instance
2022-01-24input_common/input_mapping: Add missing includesLioncash
Ensures that the class always sees the types it needs.
2022-01-24input_common/input_mapping: Remove const from return valueLioncash
Top-level const on a return by value can inhibit move semantics, and is unnecessary.
2022-01-24input_common/input_mapping: Default constructorLioncash
2022-01-24input_common/main: Pass MappingData by const reference in callbacksLioncash
Avoids creating unnecessary 168 byte copies per callback invocation.
2022-01-24input_common/udp_client: Replace deprecated from_string()/to_ulong() functionsLioncash
These are deprecated and make_address variants and to_uint() should be used instead.
2022-01-24input_common/udp_client: Prevent unnecessary string copiesLioncash
We can also remove some redundant const on the return values, since these don't do anything
2022-01-24kernel/k_affinity_mask: Remove duplicated assertLioncash
This is already checked inside GetCoreBit()
2022-01-23yuzu: Add setting to disable controller navigationgerman77
2022-01-23Update FSR to 1.0.2Moonlacer
Updates yuzu's FSR implementation to 1.0.2
2022-01-22Merge pull request #7761 from v1993/patch-8bunnei
Improve FFmpeg cmake file
2022-01-22hle: kernel: KThread: Improve Increment/Decrement RunningThreadCount.bunnei
- Previously implementation was incorrect, and would occasionally underflow.
2022-01-22Merge pull request #7716 from german77/volumebunnei
yuzu: Add volume hotkeys
2022-01-22Improve FFmpeg cmake fileValeri
* Fix compilation if CUDA_INCLUDE_DIRS is empty/contains multiple paths * Pass CMAKE_{C,CXX}_COMPILER_LAUNCHER to ffmpeg compiler
2022-01-22Merge pull request #7735 from german77/udp_batterybunnei
input_common: Report battery for UDP controllers
2022-01-21Merge pull request #7737 from bunnei/fix-dummy-thread-leakbunnei
Various fixes to HLE service thread management
2022-01-21yuzu: Add modifiers for keyboardNarr the Reg
2022-01-21Merge pull request #7752 from Morph1984/SetCpuOverclockEnabledbunnei
service: apm: Stub ISession SetCpuOverclockEnabled
2022-01-21hle: kernel: KThread: Ensure host (dummy) threads block on locking.bunnei
- But do not enter the priority queue, as otherwise they will be scheduled. - Allows dummy threads to use guest synchronization primitives.
2022-01-21Merge pull request #7756 from lioncash/servicebunnei
service: Update function tables
2022-01-21service/wlan: Update function tablesLioncash
2022-01-21service/usb: Update function tablesLioncash
2022-01-21service/set: Update function tablesLioncash
2022-01-21service/ns: Update function tablesLioncash
2022-01-21service/nim: Update unknown function table entriesLioncash
2022-01-21service/friend: Update unknown function table entriesLioncash
2022-01-21service/filsystem: Update fsp-srv function tableLioncash
2022-01-21service/btm: Update function tablesLioncash
2022-01-21service/audio: Update audctl unknown function namesLioncash
2022-01-21service/am: Update omm function tablesLioncash
2022-01-21service/acc: Update unknown function namesLioncash
Switchbrew has the function names now.
2022-01-21Merge pull request #7755 from v1993/someone-in-here-lacks-system-wide-themingbunnei
Use Default Colorful theme by default outside of Windows