summaryrefslogtreecommitdiff
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | service: hid: Implement GetLastActiveNpadGravatar german772024-01-063-3/+14
| | | | |
| * | | | service: hid: Implement AssigningSingleOnSlSrPressGravatar german772024-01-063-2/+24
| | | | |
| * | | | service: hid: Implement SetNpadSystemExtStateEnabledGravatar german772024-01-065-8/+34
| | | | |
| * | | | service: hid: Implement CaptureButtonAssignmentGravatar german772024-01-065-8/+57
| | | | |
* | | | | Merge pull request #12599 from german77/settingsGravatar liamwhite2024-01-0714-380/+394
|\ \ \ \ \ | |_|/ / / |/| | | | service: set: Use official names
| * | | | service: set: Rename filesGravatar german772024-01-0614-21/+21
| | | | |
| * | | | service: set: Use official namesGravatar german772024-01-069-359/+373
| | | | |
* | | | | Merge pull request #12560 from GayPotatoEmma/masterGravatar Charles Lombardo2024-01-072-0/+10
|\ \ \ \ \ | | | | | | | | | | | | android: add basic support for google game dashboard
| * | | | | android: add basic support for google game dashboardGravatar Emma2024-01-042-0/+10
| | |_|/ / | |/| | |
* | | | | Merge pull request #12601 from german77/rocketGravatar liamwhite2024-01-071-0/+5
|\ \ \ \ \ | | | | | | | | | | | | service: hid: Make sure there's an active aruid handle
| * | | | | service: hid: Make sure there's an active aruid handleGravatar german772024-01-061-0/+5
| | |_|/ / | |/| | |
* | | | | Merge pull request #12576 from t895/total-save-managerGravatar liamwhite2024-01-076-0/+264
|\ \ \ \ \ | |/ / / / |/| | | | android: Re-add global save manager
| * | | | android: Re-add global save managerGravatar t8952024-01-046-0/+264
| |/ / / | | | | | | | | | | | | Reworked to correctly collect and import/export saves that could exist in either /nand/user/save/000...000/<user id> or /nand/user/save/account/<user id raw string>
* | | | Merge pull request #12596 from german77/hid_qlaunchGravatar liamwhite2024-01-062-6/+60
|\ \ \ \ | | | | | | | | | | service: hid: Add functions needed by QLaunch
| * | | | service: hid: Add functions needed by QlaunchGravatar Narr the Reg2024-01-062-6/+60
| | |/ / | |/| |
* / | | service: hid: Handle pending deleteGravatar Narr the Reg2024-01-063-21/+18
|/ / /
* | | hid_core: Move hid to it's own subprojectGravatar Narr the Reg2024-01-05141-438/+481
| | |
* | | Merge pull request #12437 from ameerj/gl-amd-fixesGravatar liamwhite2024-01-045-14/+15
|\ \ \ | | | | | | | | OpenGL: Fixes and workaround updates for AMD
| * | | Settings: Indicate AMD's compatibility with SPIR-V on OGLGravatar Ameer J2023-12-211-1/+1
| | | |
| * | | spirv_emit_context: Fix BaseInstance for OGL spirvGravatar Ameer J2023-12-211-1/+1
| | | |
| * | | emit_glsl_image: Use inlined texelFetch offsetsGravatar Ameer J2023-12-202-7/+7
| | | |
| * | | gl_device: Remove AMD blacklists that are no longer applicableGravatar Ameer J2023-12-201-5/+6
| | | |
* | | | Merge pull request #12575 from t895/inconsistent-settings-applicationGravatar liamwhite2024-01-044-11/+6
|\ \ \ \ | | | | | | | | | | frontend_common: config: Only write setting related to opened config file
| * | | | android: Save global config synchronously in onCloseGameFoldersFragmentGravatar t8952024-01-031-2/+3
| | | | | | | | | | | | | | | | | | | | Could cause multiple global saves at once that went untracked previously
| * | | | frontend_common: config: Only write setting related to opened config fileGravatar t8952024-01-031-2/+3
| | | | | | | | | | | | | | | | | | | | If we tried to write a switchable setting to config that was not using global in the global config instance, we could write the per-game setting accidentally. This ensures that we always use the global setting for global config and the currently applied setting for custom config.
| * | | | android: Don't save settings on config destructionGravatar t8952024-01-032-7/+0
| | |/ / | |/| | | | | | | | | | Android doesn't have a proper way of destroying its config object so it's best to stick to the built-in methods to control saving config
* | | | Merge pull request #12571 from t895/apply-orientation-on-startGravatar liamwhite2024-01-044-14/+49
|\ \ \ \ | | | | | | | | | | android: Expose more orientation options
| * | | | android: Update orientation on emulation fragment startGravatar t8952024-01-031-0/+1
| | | | |
| * | | | android: Expose all orientation locking optionsGravatar t8952024-01-034-14/+48
| |/ / /
* | | | Merge pull request #12570 from t895/generic-config-painGravatar liamwhite2024-01-042-16/+11
|\ \ \ \ | | | | | | | | | | frontend_common: config: Move WriteIntegerSetting definition to header
| * | | | frontend_common: config: Move WriteIntegerSetting definition to headerGravatar t8952024-01-032-16/+11
| |/ / / | | | | | | | | | | | | Fixes a compiler error where the compiler could not see the definition of the method in qt_config and others.
* | | | Merge pull request #12558 from t895/zip-storage-methodGravatar liamwhite2024-01-043-3/+15
|\ \ \ \ | | | | | | | | | | android: Disable compression for zip exports
| * | | | android: Add internal option to disable compression for zip exportsGravatar t8952024-01-023-3/+15
| |/ / / | | | | | | | | | | | | Disables compression for user data and save exports
* | | | Merge pull request #12557 from merryhime/termination-ipiGravatar liamwhite2024-01-041-4/+4
|\ \ \ \ | | | | | | | | | | KThread: Send termination interrupt to all cores a thread has affinity to
| * | | | KThread: Send termination interrupt to all cores a thread has affinity toGravatar Merry2024-01-021-4/+4
| |/ / / | | | | | | | | | | | | | | | | KThread::RequestTerminate may run from a thread which is not the CurrentCore, and thus masking this out is erroneous.
* | | | service: hid: Remove data races when handling shared memoryGravatar Narr the Reg2024-01-0317-29/+45
| | | |
* | | | service: hid: Implement NpadResource and NpadDataGravatar Narr the Reg2024-01-0319-676/+1930
|/ / /
* | | Merge pull request #12554 from german77/directconnectGravatar liamwhite2024-01-021-1/+1
|\ \ \ | | | | | | | | yuzu: Use displayed port on direct connect
| * | | yuzu: Use displayed port on direct connectGravatar Narr the Reg2024-01-021-1/+1
| | |/ | |/|
* | | Merge pull request #12551 from t895/dpad-save-fixGravatar liamwhite2024-01-021-2/+1
|\ \ \ | | | | | | | | android: Fix dpad position saving
| * | | android: Fix dpad position savingGravatar t8952024-01-011-2/+1
| |/ / | | | | | | | | | Was using the wrong key previously
* / / android: Use case-insensitive check for addon directoryGravatar t8952024-01-011-1/+1
|/ /
* | Merge pull request #12543 from FernandoS27/stop-liking-posts-from-ur-friends-exGravatar liamwhite2024-01-013-4/+5
|\ \ | | | | | | VideoCore: A few fixes to DMA and swapchain
| * | Vulkan: Only recreate swapchain if the frame is bigger than the swap image.Gravatar Fernando Sahmkow2023-12-312-2/+3
| | |
| * | MaxwellDMA: Don't flush the outputs of a dma copy.Gravatar Fernando Sahmkow2023-12-312-3/+3
| | |
* | | Merge pull request #12536 from german77/npad_interfaceGravatar liamwhite2024-01-0137-230/+711
|\ \ \ | | | | | | | | service: hid: Use applet resource to get latest shared memory handle
| * | | service: hid: Use applet resource to get latest shared memory handleGravatar Narr the Reg2023-12-3137-230/+711
| | | |
* | | | Merge pull request #12518 from t895/theme-settingsGravatar liamwhite2024-01-0138-1044/+1545
|\ \ \ \ | | | | | | | | | | android: Migrate remaining settings to ini
| * | | | android: Expose touchscreen toggleGravatar t8952023-12-303-0/+13
| | | | |
| * | | | android: Don't apply material you below android 12Gravatar t8952023-12-301-1/+8
| | | | | | | | | | | | | | | | | | | | Since you can manually change the config file now, users can force the material you theme under Android 12 and that will result in crashing on startup. This swaps to the default theme if that happens.