summaryrefslogtreecommitdiff
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* msvc: set warning level to /W4 globallyGravatar Danila Malyutin2023-09-0313-20/+17
| | | | And fix a bunch of warnings
* shader_recompiler: fix emulation of 3D textureGradGravatar Liam2023-09-012-3/+34
|
* android: Fix game content installerGravatar Charles Lombardo2023-08-302-85/+80
| | | | Before this would run on the main thread and freeze the device. Additionally this fixes the result dialog not appearing if a config change happens during the installation by getting the activity's fragment manager when needed.
* android: Combine LongMessageDialogFragment with MessageDialogFragmentGravatar Charles Lombardo2023-08-305-98/+47
|
* android: Support dynamic app shortcutsGravatar Charles Lombardo2023-08-301-0/+21
|
* Merge pull request #11405 from t895/emulation-loadingGravatar Charles Lombardo2023-08-3028-237/+393
|\ | | | | android: Emulation loading UI and fixes
| * android: Separate emulation states from emulation mutexGravatar Charles Lombardo2023-08-301-4/+2
| | | | | | | | Emulation states are repeatedly checked by input and performance stats. During startup and shutdown, this could lead to a long halt on the UI thread because the call to IsRunning will be waiting on the emulation mutex to be unlocked. Using atomics should replace the existing functionality without causing problems.
| * android: Game loading/shutting down indicatorsGravatar Charles Lombardo2023-08-3026-211/+312
| |
| * android: Create custom game icon loaderGravatar Charles Lombardo2023-08-302-22/+79
| |
* | hwopus: Implement GetWorkBufferSizeExExGravatar FearlessTobi2023-08-302-1/+6
|/ | | | | | Allows Sea of Stars to boot. Fixes https://github.com/yuzu-emu/yuzu/issues/11415.
* Merge pull request #11380 from t895/settings-integrationGravatar Charles Lombardo2023-08-2976-2109/+2219
|\ | | | | android: Settings rework
| * android: Don't reload settings when stopping settings activityGravatar Charles Lombardo2023-08-291-2/+0
| |
| * android: Add optional androidDefault property to settingsGravatar Charles Lombardo2023-08-293-7/+15
| | | | | | | | Certain settings have specific defaults for Android only. This lets us reflect them in the Kotlin side with very little code.
| * android: Proper state restoration on settings dialogsGravatar Charles Lombardo2023-08-299-198/+319
| | | | | | | | | | | | All dialog code (except for the Date/Time ones) has been extracted out into a generic settings dialog fragment that handles everything through a viewmodel. State for each dialog will now be retained and dialogs will stay shown through configuration changes. I won't be changing the current state of the date and time dialog fragments until Google decides to make their classes non-final or if/when we migrate to Jetpack Compose.
| * android: Add search for settingsGravatar Charles Lombardo2023-08-298-1/+372
| |
| * android: Implement paired settingsGravatar Charles Lombardo2023-08-299-241/+335
| | | | | | | | Enables and disables editing on settings that rely on other boolean settings.
| * android: Prevent infinite switch toggle loopGravatar Charles Lombardo2023-08-291-1/+3
| | | | | | | | If something like a lifecycle event happens when this switch is toggled (Ex. whenever the black backgrounds switch is toggled), this could move the switch from the default position and trigger the checked changed listener and restart the loop. Here I just removed the listener at the start so we recycle the view properly still, set the checked state and then add the new listener.
| * android: Migrate settings to navigation componentGravatar Charles Lombardo2023-08-2928-567/+371
| | | | | | | | Consolidates all of the settings components to the fragment and activity with no interfaces and only the settings fragment presenter. This also includes new material animations and new viewmodel usage to prevent the fragment and activity directly interacting with one another.
| * android: Trim settings enums and itemsGravatar Charles Lombardo2023-08-2916-321/+133
| | | | | | | | Take advantage of the new settings interface to reduce the amount of code we need for each setting item. Additionally make all settings items non-null to improve brevity.
| * android: Expose interface for getting settings from native codeGravatar Charles Lombardo2023-08-2949-969/+869
| | | | | | | | Completely removes code related to parsing the settings file on the java side. Now all settings are accessed via NativeConfig.kt and config.cpp has been modified to be closer to the core counterpart. Since the core currently uses QSettings, we can't remove reliance from Wini yet. This also includes simplifications to each settings interface to get closer to native code and prepare for per-game settings.
* | Merge pull request #11413 from t895/intentsGravatar Charles Lombardo2023-08-295-12/+45
|\ \ | |/ |/| android: Support intents to emulation activity
| * android: Support intents to emulation activityGravatar Charles Lombardo2023-08-295-12/+45
| |
* | Merge pull request #11408 from Kelebek1/fix_audio_node_idGravatar liamwhite2023-08-291-1/+1
|\ \ | | | | | | [Audio] Fix node id index in DropVoices
| * | Fix node id index in DropVoicesGravatar Kelebek12023-08-281-1/+1
| | |
* | | Merge pull request #11409 from liamwhite/splatoon-nsd-v2Gravatar liamwhite2023-08-292-2/+21
|\ \ \ | | | | | | | | sfdnsres: ensure lp1 is not resolved
| * | | sfdnsres: ensure lp1 is not resolvedGravatar Liam2023-08-282-2/+21
| | | |
* | | | Merge pull request #11112 from danilaml/nvdec-deinterlaceGravatar liamwhite2023-08-291-1/+2
|\ \ \ \ | |_|_|/ |/| | | Use initial_frame to check interlaced flag
| * | | Use initial_frame to check interlaced flagGravatar Danila Malyutin2023-08-281-1/+2
| |/ / | | | | | | | | | | | | | | | If final frame was transferred from GPU, it won't carry the props. Fixes #11089
* | | Merge pull request #11392 from t895/layout-troublesGravatar Charles Lombardo2023-08-294-46/+33
|\ \ \ | | | | | | | | android: Emulation activity fixes
| * | | android: Don't set a default emulation orientationGravatar Charles Lombardo2023-08-271-1/+0
| | | | | | | | | | | | | | | | Could cause unnecessary configuration change when setting an orientation other than "Landscape"
| * | | android: Properly adjust emulation surface aspect ratioGravatar Charles Lombardo2023-08-273-45/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously the emulation surface wouldn't respond properly to orientation changes. This would result in the screen appearing stretched when starting in one orientation and switching to another. The code for calculating the bounds of the view have been changed to match the expected behavior now. Before the view would just match parent in height and width. Now instead of using setLeftTopRightBottom (which is intended to be used for animations) we pass newly calculated bounds for the view into super. Now the view bounds match the emulation output. This also means that we don't need the overload for the SettingsActivity to launch it using an ActivityResultLauncher. We can just update the view in onResume.
* | | | Merge pull request #11390 from FearlessTobi/hwopus-multiGravatar liamwhite2023-08-282-3/+51
|\ \ \ \ | | | | | | | | | | hwopus: Implement OpenHardwareOpusDecoderForMultiStreamEx and DecodeInterleavedForMultiStream
| * | | | hwopus: Implement OpenHardwareOpusDecoderForMultiStreamEx and ↵Gravatar FearlessTobi2023-08-272-3/+51
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | DecodeInterleavedForMultiStream Allows MLB The Show 22 to boot. Fixes https://github.com/yuzu-emu/yuzu/issues/7911.
* | / / audio: allow more latency in cubeb initializationGravatar Liam2023-08-272-8/+3
| |/ / |/| |
* | | Merge pull request #11389 from FernandoS27/discard-fixGravatar Fernando S2023-08-271-1/+9
|\ \ \ | |/ / |/| | Buffer Cache: fix discard writes.
| * | Buffer Cache: fix discard writes.Gravatar Fernando Sahmkow2023-08-271-1/+9
| | |
* | | Merge pull request #11356 from lat9nq/console-mode-pgGravatar liamwhite2023-08-2625-40/+162
|\ \ \ | | | | | | | | general,config-qt: Present Console Mode as an enum with separate options in game properties
| * | | main: Fix docked mode button, clang 14 errorGravatar lat9nq2023-08-231-6/+6
| | | |
| * | | native: Use Docked Mode helperGravatar lat9nq2023-08-221-1/+1
| | | |
| * | | main: Access by referenceGravatar lat9nq2023-08-221-1/+1
| | | | | | | | | | | | | | | | Old Clang is fussy about this.
| * | | config-android: Translate console mode settingGravatar lat9nq2023-08-221-1/+4
| | | | | | | | | | | | | | | | Translates the previous boolean to the enum.
| * | | general: Use console mode helper across projectGravatar lat9nq2023-08-2213-49/+34
| | | |
| * | | settings: Add docked mode helper functionGravatar lat9nq2023-08-222-0/+7
| | | |
| * | | config(qt): Sanitize docked handheld controllerGravatar lat9nq2023-08-222-0/+13
| | | |
| * | | shared_translation: Define use_docked_mode textsGravatar lat9nq2023-08-221-1/+4
| | | |
| * | | general: Convert use_docked_mode to an enumerationGravatar lat9nq2023-08-2217-35/+74
| | | | | | | | | | | | | | | | Allows some special interactions with it in the Qt frontend.
| * | | shared_widget: Implement radio groupsGravatar lat9nq2023-08-222-1/+73
| | |/ | |/|
* | | Merge pull request #11359 from Kelebek1/check_suitable_backendGravatar liamwhite2023-08-265-38/+117
|\ \ \ | | | | | | | | Pre-test for valid audio backends
| * | | Pre-test opening a stream for audio backends, fall back to null if not suitable.Gravatar Kelebek12023-08-235-38/+117
| |/ /
* | | Merge pull request #11317 from Kelebek1/macro_dumpsGravatar liamwhite2023-08-262-11/+20
|\ \ \ | | | | | | | | Mark decompiled macros on dump, dump shaders after translation