summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2023-09-02shader_recompiler: always declare image format for image buffersLiam
2023-09-02Merge pull request #11381 from liamwhite/romfs-dumpliamwhite
qt: fix romfs dumping for multiprogram applications
2023-09-02Merge pull request #11383 from FernandoS27/are-you-a-wabbitliamwhite
Fix regressions that damaged compute indirect & use reinterpret for copies with different byteblocksizes
2023-09-02Merge pull request #11384 from liamwhite/am-shutdownliamwhite
am: shorten shutdown timeout when lock is not held
2023-09-02Merge pull request #11393 from FernandoS27/bayo-got-busted-upliamwhite
Maxwell3D: Improve Index buffer size estimation.
2023-09-02Merge pull request #11412 from liamwhite/key-area-keysliamwhite
vfs: ensure key area keys are validated
2023-09-02general: make -fwrapv generic to all architectures (#11379)liamwhite
2023-09-01shader_recompiler: fix emulation of 3D textureGradLiam
2023-08-30android: Fix game content installerCharles Lombardo
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.
2023-08-30android: Combine LongMessageDialogFragment with MessageDialogFragmentCharles Lombardo
2023-08-30android: Support dynamic app shortcutsCharles Lombardo
2023-08-30Merge pull request #11405 from t895/emulation-loadingCharles Lombardo
android: Emulation loading UI and fixes
2023-08-30android: Separate emulation states from emulation mutexCharles Lombardo
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.
2023-08-30android: Game loading/shutting down indicatorsCharles Lombardo
2023-08-30hwopus: Implement GetWorkBufferSizeExExFearlessTobi
Allows Sea of Stars to boot. Fixes https://github.com/yuzu-emu/yuzu/issues/11415.
2023-08-30android: Create custom game icon loaderCharles Lombardo
2023-08-29Merge pull request #11380 from t895/settings-integrationCharles Lombardo
android: Settings rework
2023-08-29android: Don't reload settings when stopping settings activityCharles Lombardo
2023-08-29Merge pull request #11413 from t895/intentsCharles Lombardo
android: Support intents to emulation activity
2023-08-29android: Add optional androidDefault property to settingsCharles Lombardo
Certain settings have specific defaults for Android only. This lets us reflect them in the Kotlin side with very little code.
2023-08-29android: Proper state restoration on settings dialogsCharles Lombardo
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.
2023-08-29android: Add search for settingsCharles Lombardo
2023-08-29android: Implement paired settingsCharles Lombardo
Enables and disables editing on settings that rely on other boolean settings.
2023-08-29android: Prevent infinite switch toggle loopCharles Lombardo
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.
2023-08-29android: Migrate settings to navigation componentCharles Lombardo
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.
2023-08-29android: Trim settings enums and itemsCharles Lombardo
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.
2023-08-29android: Expose interface for getting settings from native codeCharles Lombardo
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.
2023-08-29Merge pull request #11408 from Kelebek1/fix_audio_node_idliamwhite
[Audio] Fix node id index in DropVoices
2023-08-29Merge pull request #11409 from liamwhite/splatoon-nsd-v2liamwhite
sfdnsres: ensure lp1 is not resolved
2023-08-29Merge pull request #11112 from danilaml/nvdec-deinterlaceliamwhite
Use initial_frame to check interlaced flag
2023-08-29android: Support intents to emulation activityCharles Lombardo
2023-08-29Merge pull request #11392 from t895/layout-troublesCharles Lombardo
android: Emulation activity fixes
2023-08-28vfs: ensure key area keys are validatedLiam
2023-08-28qt: ensure packed update nca is applied to the correct baseLiam
2023-08-28qt: fix romfs dumping for multiprogram applicationsLiam
2023-08-28Merge pull request #11390 from FearlessTobi/hwopus-multiliamwhite
hwopus: Implement OpenHardwareOpusDecoderForMultiStreamEx and DecodeInterleavedForMultiStream
2023-08-28sfdnsres: ensure lp1 is not resolvedLiam
2023-08-28Fix node id index in DropVoicesKelebek1
2023-08-28Use initial_frame to check interlaced flagDanila Malyutin
If final frame was transferred from GPU, it won't carry the props. Fixes #11089
2023-08-27Maxwell3D: Improve Index buffer size estimation.Fernando Sahmkow
2023-08-27audio: allow more latency in cubeb initializationLiam
2023-08-27hwopus: Implement OpenHardwareOpusDecoderForMultiStreamEx and ↵FearlessTobi
DecodeInterleavedForMultiStream Allows MLB The Show 22 to boot. Fixes https://github.com/yuzu-emu/yuzu/issues/7911.
2023-08-27android: Don't set a default emulation orientationCharles Lombardo
Could cause unnecessary configuration change when setting an orientation other than "Landscape"
2023-08-27android: Properly adjust emulation surface aspect ratioCharles Lombardo
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.
2023-08-27Merge pull request #11389 from FernandoS27/discard-fixFernando S
Buffer Cache: fix discard writes.
2023-08-27VideoCore: Implement DispatchIndirectFernando Sahmkow
2023-08-27Shader Recompiler: Auto stub special registers and dump pipelines on exception.Fernando Sahmkow
2023-08-27Buffer Cache: fix discard writes.Fernando Sahmkow
2023-08-26Merge pull request #11356 from lat9nq/console-mode-pgliamwhite
general,config-qt: Present Console Mode as an enum with separate options in game properties
2023-08-26Merge pull request #11359 from Kelebek1/check_suitable_backendliamwhite
Pre-test for valid audio backends