aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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 #11406 from german77/sdl2-28-2liamwhite
externals: Update SDL to 2.28.2
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-28Merge pull request #11399 from liamwhite/cubeb-latencyliamwhite
audio: allow more latency in cubeb initialization
2023-08-28sfdnsres: ensure lp1 is not resolvedLiam
2023-08-28Fix node id index in DropVoicesKelebek1
2023-08-27externals: Update SDL to 2.28.2german77
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-fixmainline-0-1539Fernando 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
2023-08-26Merge pull request #11350 from BenjaminHalko/button-paddingliamwhite
ui: Added padding to the reset button
2023-08-26Merge pull request #11317 from Kelebek1/macro_dumpsliamwhite
Mark decompiled macros on dump, dump shaders after translation
2023-08-26Merge pull request #11338 from comex/warning-fixes-august-2023liamwhite
Warnings cleanup for GCC 13 and Clang 16
2023-08-26am: shorten shutdown timeout when lock is not heldLiam
2023-08-26DMA Pusher: Fix regression caused by guest memory optimizationsFernando Sahmkow
2023-08-25Mark decompiled macros as decompiled on dump, dump shaders after translationKelebek1
2023-08-25Skip additional mbedcrypto warnings options on MSVCLiam
2023-08-25Avoid `$<CXX_COMPILER_ID:Clang>` because it doesn't include AppleClang.comex
2023-08-25Warnings cleanup for GCC 13 and Clang 16comex
Note: For GCC there are still a huge number of `-Warray-bounds` warnings coming from `externals/dynarmic`. I could have added a workaround in `externals/CMakeLists.txt` similar to what this PR does for other externals, but given Dynarmic's close affiliation with Yuzu, it would be better to fix it upstream. Besides that, on my machine, this makes the build warning-free except for some warnings from glslangValidator and AutoMoc. Details: - Disable some warnings in externals. - Disable `-Wnullability-completeness`, which is a Clang warning triggered by the Vulkan SDK where if any pointers in the header are marked _Nullable, it wants all pointers to be marked _Nullable or _Nonnull. Most of them are, but some aren't. Who knows why. - `src/web_service/verify_user_jwt.cpp`: Disable another warning when including `jwt.hpp`. - `src/input_common/input_poller.cpp`: Add missing `override` specifiers. - src/common/swap.h: Remove redundant `operator&`. In general, this file declares three overloads of each operator. Using `+` as an example, the overloads are: - a member function for `swapped_t + integer` - a member function for `swapped_t + swapped_t` - a free function for `integer + swapped_t` But for `operator&`, there was an additional free function for `swapped_t + integer`, which was redundant with the member function. This caused a GCC warning saying "ISO C++ says that these are ambiguous".
2023-08-25Merge pull request #11377 from BenjaminHalko/reverse-slider-inputmainline-0-1538liamwhite
ui: Fixed inverted controls on ReverseSlider widgets
2023-08-25Merge pull request #11378 from t895/game-flagliamwhite
android: Use appCategory to specify the app is a game