summaryrefslogtreecommitdiff
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* nvnflinger: Acquire lock prior to signaling the vsync variableGravatar Morph2023-06-071-1/+2
|
* (wall, native)_clock: Rework NativeClockGravatar Morph2023-06-075-259/+94
|
* x64: Deduplicate RDTSC usageGravatar Morph2023-06-075-19/+82
|
* Merge pull request #10650 from qurious-pixel/android_tvGravatar bunnei2023-06-072-14/+8
|\ | | | | Android TV banner
| * remove version code declarationGravatar qurious-pixel2023-06-071-1/+0
| |
| * Android TV bannerGravatar Live session user2023-06-063-14/+9
| |
* | Merge pull request #10655 from Morph1984/msvc-cxx20Gravatar liamwhite2023-06-071-2/+4
|\ \ | | | | | | CMakeLists: Force C++20 on MSVC due to conflicts with C++23 modules
| * | CMakeLists: Force C++20 on MSVC due to conflicts with C++23 modulesGravatar Morph2023-06-061-2/+4
| | | | | | | | | | | | | | | The latest version of MSVC STL brings C++23 standard library modules, which conflict with precompiled headers. Disabling with /experimental:module- has no effect, so force C++20 in the meantime while we wait for module support in other compilers.
* | | Merge pull request #10635 from mrcmunir/l4t-tx1-nvidiaGravatar liamwhite2023-06-071-4/+4
|\ \ \ | | | | | | | | Make VK_EXT_robustness2 optional
| * | | Updated to lexicographical order suggestionsGravatar Carlos Estrague / Mrc_munir2023-06-061-3/+3
| | | |
| * | | Make VK_EXT_robustness2 optionalGravatar Carlos Estrague / Mrc_munir2023-06-061-4/+4
| | | | | | | | | | | | | | | | | | | | For some reason nvidia implemented Vulkan 1.2 supported without support for VK_EXT_robustness2 in tegra X1/X2 . Fix vulkan work in TX1/TX2 L4T drivers .
* | | | Merge pull request #10476 from ameerj/gl-memory-mapsGravatar liamwhite2023-06-0715-204/+316
|\ \ \ \ | | | | | | | | | | OpenGL: Make use of persistent buffer maps in buffer cache
| * | | | gl_staging_buffers: Optimization to reduce fence waitingGravatar ameerj2023-05-282-4/+22
| | | | |
| * | | | OpenGL: Make use of persistent buffer maps in buffer cache downloadsGravatar ameerj2023-05-2815-204/+298
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Persistent buffer maps were already used by the texture cache, this extends their usage for the buffer cache. In my testing, using the memory maps for uploads was slower than the existing "ImmediateUpload" path, so the memory map usage is limited to downloads for the time being.
* | | | | Merge pull request #10583 from ameerj/ill-logicGravatar liamwhite2023-06-071-8/+4
|\ \ \ \ \ | | | | | | | | | | | | AccelerateDMA: Fix incorrect check in Buffer<->Texture copies
| * | | | | texture_cache: Fix incorrect logic for AccelerateDMAGravatar ameerj2023-06-021-8/+4
| | | | | |
* | | | | | Merge pull request #10591 from keve1227/localized-game-iconsGravatar liamwhite2023-06-074-10/+42
|\ \ \ \ \ \ | |_|_|_|/ / |/| | | | | Localize game icons
| * | | | | Fix typoGravatar Kevin Sundqvist Norlén2023-06-031-1/+1
| | | | | | | | | | | | | | | | | | Co-authored-by: liamwhite <liamwhite@users.noreply.github.com>
| * | | | | Update Chinese NX language namesGravatar Keve12272023-06-032-8/+8
| | | | | | | | | | | | | | | | | | | | | | | | ... as per the TLoZ: TotK icon files. Would this conflict with older games?
| * | | | | Issue a reload if the system language changedGravatar Keve12272023-06-031-1/+2
| | | | | |
| * | | | | Pick game icon based on the configured system languageGravatar Keve12272023-06-031-1/+32
| |/ / / /
* | | | / android: Set version codeGravatar Narr the Reg2023-06-061-0/+1
| |_|_|/ |/| | |
* | | | android: Improve Gradle build configurationGravatar Abandoned Cart2023-06-061-1/+2
| | | |
* | | | android: audio_core: sink_stream: Remove unnecessary check.Gravatar bunnei2023-06-051-3/+0
| | | |
* | | | Merge pull request #10508 from yuzu-emu/limeGravatar bunnei2023-06-05328-176/+21104
|\ \ \ \ | |_|_|/ |/| | | Project Lime - yuzu Android Port
| * | | Merge pull request #10633 from t895/variable-surface-ratioGravatar bunnei2023-06-053-1/+62
| |\ \ \ | | | | | | | | | | android: Use a custom view for changing emulation aspect ratio
| | * | | android: Use a custom view for changing emulation aspect ratioGravatar Charles Lombardo2023-06-053-1/+62
| | | | | | | | | | | | | | | | | | | | Credit to the Skyline team for the FixedRatioSurfaceView.
| * | | | Merge pull request #10578 from PabloG02/lime-firmware&logsGravatar bunnei2023-06-059-33/+270
| |\ \ \ \ | | | | | | | | | | | | Add UI to import firmware and share logs
| | * | | | android: HomeSettingsFragment: Use string resource for "Share log".Gravatar bunnei2023-06-051-1/+1
| | | | | |
| | * | | | Address feedbackGravatar PabloG022023-06-064-19/+28
| | | | | |
| | * | | | Attempt to move the unzip coroutine to a ViewModelGravatar PabloG022023-06-043-27/+94
| | | | | |
| | * | | | android: update stringsGravatar PabloG022023-06-041-5/+5
| | | | | |
| | * | | | android: add option to share logGravatar PabloG022023-06-043-0/+36
| | | | | |
| | * | | | android: add option to install firmwareGravatar PabloG022023-06-045-1/+124
| | | | | |
| | * | | | android: move unzip function to FileUtil and use SecurityExceptionGravatar PabloG022023-06-042-32/+34
| | | | | |
| * | | | | Merge pull request #10618 from t895/licensesGravatar bunnei2023-06-0510-4/+918
| |\ \ \ \ \ | | |_|/ / / | |/| | | | android: Add licenses page
| | * | | | android: Create licenses pageGravatar Charles Lombardo2023-06-0510-4/+918
| | | | | |
| * | | | | Merge pull request #10613 from t895/settings-changesGravatar bunnei2023-06-047-104/+116
| |\ \ \ \ \ | | | | | | | | | | | | | | android: String and settings organization changes
| | * | | | | android: Move settings to debug submenuGravatar Charles Lombardo2023-06-044-26/+38
| | | | | | |
| | * | | | | android: Several string changesGravatar Charles Lombardo2023-06-045-78/+78
| | | | | | |
| * | | | | | android: Load settings at the start of each activityGravatar Charles Lombardo2023-06-044-6/+19
| | |/ / / / | |/| | | |
| * | | | | android: Resolve a couple Gradle warningsGravatar Abandoned Cart2023-06-041-1/+4
| |/ / / /
| * | | | android: Add support for split foldable viewGravatar Abandoned Cart2023-06-033-1/+55
| | | | |
| * | | | android: Replace deprecated and Java codeGravatar Abandoned Cart2023-06-031-27/+20
| |/ / /
| * | | android: Fix crash on importing invalid saveGravatar Charles Lombardo2023-06-031-3/+5
| | | |
| * | | android: vk_presentation_manager: Fix unusued needs_recreation.Gravatar bunnei2023-06-031-3/+3
| | | |
| * | | android: Rename "Input Overlay" to "Overlay Options"Gravatar Charles Lombardo2023-06-031-1/+1
| | | |
| * | | android: Adjust import/export saves dialogGravatar Charles Lombardo2023-06-033-15/+21
| | | |
| * | | android: Warning dialogs for key errorsGravatar Charles Lombardo2023-06-033-31/+95
| | | |
| * | | android: vk_turbo_mode: Remove unnecessary device recreation.Gravatar bunnei2023-06-032-2/+11
| | | | | | | | | | | | | | | | - Fixes a rare crash.