summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2023-01-28video_core: Implement vulkan clear specified channelFengChen
2023-01-27Merge pull request #9677 from Morph1984/sleep-onebunnei
polyfill_thread: Implement StoppableTimedWait
2023-01-27Merge pull request #9539 from Wollnashorn/opengl-fsrliamwhite
video_core/opengl: Added FSR upscaling filter to the OpenGL renderer
2023-01-27Merge pull request #9666 from liamwhite/wait-for-mebunnei
kernel: fix incorrect locking order in suspension
2023-01-26kernel: unbreak min/max template deduction on Apple ClangLiam
2023-01-26video_core/opengl: Add FSR upscaling filter to the OpenGL rendererWollnashorn
2023-01-26Merge pull request #9683 from german77/high_power_joyconbunnei
input_common: Implement SetLowPowerMode and TriggersElapsed
2023-01-26input_common: Implement SetLowPowerMode and TriggersElapsed for the joycon ↵Narr the Reg
driver
2023-01-25Merge pull request #9670 from ↵bunnei
merryhime/revert-af5ecb0b15d4449f58434e70eed835cf71fc5527 Revert "MemoryManager: use fastmem directly."
2023-01-25Merge pull request #9652 from liamwhite/msbunnei
spirv: fix multisampled image fetch
2023-01-25Merge pull request #9604 from liamwhite/ptbunnei
kernel: KPageTable: update
2023-01-25main: Only set AA_DisableWindowContextHelpButton below Qt6Morph
This is fortunately disabled by default on Qt6, so we just have to check whether we are compiling with Qt6 or not.
2023-01-25Merge pull request #9675 from Morph1984/ini-concatliamwhite
default_ini: Split and concatenate the config string literal
2023-01-25Merge pull request #9668 from Morph1984/qt-why-is-this-not-the-defaultliamwhite
main: Globally disable the "?" button on dialogs
2023-01-25Merge pull request #9676 from german77/revert-stick-rangeliamwhite
Revert #9617 and fix it on input_common
2023-01-25input_common: Make use of StoppableTimedWaitMorph
2023-01-25polyfill_thread: Implement StoppableTimedWaitMorph
StoppableTimedWait allows for a timed wait to be stopped immediately after a stop is requested. This is useful in cases where long duration thread sleeps are needed and allows for immediate joining of waiting threads after a stop is requested. Co-Authored-By: liamwhite <liamwhite@users.noreply.github.com>
2023-01-25input_common: add missing header for libc++ after 340f15d1fa79Jan Beich
src/input_common/drivers/joycon.cpp:187:26: error: no member named 'find_if' in namespace 'std::ranges' std::ranges::find_if(left_joycons, [](auto& device) { return !device->IsConnected(); }); ~~~~~~~~~~~~~^ src/input_common/drivers/joycon.cpp:193:54: error: no member named 'find_if' in namespace 'std::ranges' const auto unconnected_device = std::ranges::find_if( ~~~~~~~~~~~~~^ src/input_common/drivers/joycon.cpp:393:51: error: no member named 'find_if' in namespace 'std::ranges' const auto matching_device = std::ranges::find_if( ~~~~~~~~~~~~~^ src/input_common/drivers/joycon.cpp:402:51: error: no member named 'find_if' in namespace 'std::ranges' const auto matching_device = std::ranges::find_if( ~~~~~~~~~~~~~^
2023-01-25Revert 9617 and fix it on input_commonNarr the Reg
2023-01-25default_ini: Split and concatenate the config string literalMorph
We are dangerously close to MSVC's 16384 character limit for string literals. Breaking this string up and concatenating will allow for more settings to be added in the future.
2023-01-25Revert "MemoryManager: use fastmem directly."Merry
This reverts commit af5ecb0b15d4449f58434e70eed835cf71fc5527.
2023-01-25main: Globally disable the "?" button on dialogsMorph
Sets the AA_DisableWindowContextHelpButton attribute to disable this useless button globally.
2023-01-24Merge pull request #9662 from abouvier/cmake-llvmbunnei
cmake: prefer system llvm library
2023-01-24Merge pull request #9492 from german77/joycon_releaseliamwhite
Input_common: Implement custom joycon driver v2
2023-01-23kernel: split SetAddressKey into user and kernel variantsLiam
2023-01-23kernel: fix incorrect locking order in suspensionLiam
2023-01-23spirv: fix multisampled image fetchLiam
2023-01-23cmake: prefer system llvm libraryAlexandre Bouvier
2023-01-22Merge pull request #9555 from abouvier/catch2-updateliamwhite
tests: update catch2 to 3.0.1
2023-01-22kernel: KPageTable: updateLiam
2023-01-22Merge pull request #9660 from german77/koreaToTaiwanliamwhite
yuzu: Fix language comobox crash
2023-01-22Merge pull request #9656 from liamwhite/nsightliamwhite
nsight_aftermath_tracker: update for latest Aftermath SDK
2023-01-22Merge pull request #9637 from SaiKai/repeat_shortcutsliamwhite
allow volume up/down hotkeys to be repeated
2023-01-22Merge pull request #9617 from german77/off_by_oneliamwhite
core: hid: Fix stick minimum range
2023-01-22Merge pull request #9613 from Kelebek1/demangleliamwhite
Add stacktrace symbol demangling
2023-01-22yuzu: Fix language comobox crashgerman77
2023-01-21nsight_aftermath_tracker: update for latest Aftermath SDKLiam
2023-01-20Merge pull request #9611 from liamwhite/patch-1bunnei
debugger: add host fastmem pointer fetch command
2023-01-20core: hid: Make use of SCOPE_EXIT and SCOPE_GUARD where applicableNarr the Reg
2023-01-20input_common: Fix joycon mappingsgerman77
2023-01-20input_common: Address byte reviewgerman77
2023-01-19Merge pull request #9640 from german77/why_sdlbunnei
input_common: reset sdl motion if data is invalid
2023-01-19core: hid: Only set the polling mode to the correct sideNarr the Reg
2023-01-19input_common: Drop Pro controller support from custom drivergerman77
2023-01-19input_common: Fix issue where ring and irs are enabled at the same timegerman77
2023-01-19input_common: Implement joycon ir cameraNarr the Reg
2023-01-19yuzu: Add ring controller test buttongerman77
2023-01-19input_common: Use DriverResult on all enginesgerman77
2023-01-19Address review commentsgerman77
2023-01-19core: hid: Fix input regressionsNarr the Reg