summaryrefslogtreecommitdiff
path: root/src/yuzu/configuration
AgeCommit message (Collapse)Author
2023-01-18allow volume up/down hotkeys to be repeatedJonas Gutenschwager
2023-01-13UI changeMatías Locatti
2023-01-131.5X resolution scaler optionMatías Locatti
2023-01-10Merge pull request #9605 from german77/mouse_mappingbunnei
yuzu: Read mouse scroll
2023-01-10yuzu: Read mouse wheel inputNarr the Reg
2023-01-09qt: fix configuration weirdness on turboLiam
2023-01-06Merge pull request #9552 from liamwhite/turboliamwhite
vulkan: implement 'turbo mode' clock booster
2023-01-05config: Set the Vulkan driver pipeline cache option to be globalWollnashorn
2023-01-05config: Better wording for VK pipeline cache option and enable by defaultWollnashorn
2023-01-05video_core/vulkan: Added `VkPipelineCache` to store Vulkan pipelinesWollnashorn
As an optional feature which can be enabled in the advanced graphics configuration, all pipelines that get built at the initial shader loading are stored in a VkPipelineCache object and are dumped to the disk. These vendor specific pipeline cache files are located at `/shader/GAME_ID/vulkan_pipelines.bin`. This feature was mainly added because of an issue with the AMD driver (see yuzu-emu#8507) causing invalidation of the cache files the driver builds automatically.
2023-01-04common: add setting for renderer clock workaroundLiam
2023-01-04yuzu-ui: Add setting for disabling macro HLEFernando Sahmkow
2023-01-01Merge pull request #9514 from ColinKinloch/en_gbliamwhite
settings: warn on invalid regon/language combinations
2022-12-30settings: comment language blocklist columnsColin Kinloch
2022-12-30config: Save multiplayer settings only globallyWollnashorn
Saved multiplayer settings like the nickname, remote address, etc. were reset everytime a game was booted up and the game-specific config files were loaded, as these values will never be set.
2022-12-29settings: added regon/language warning bounds checkColin Kinloch
2022-12-28settings: warn on invalid regon/language combinationsColin Kinloch
2022-12-23yuzu: Automatically refresh device listgerman77
2022-12-17yuzu: fix device name settinggerman77
2022-12-13Set: Allow setting device nicknameChloe Marcec
2022-12-12yuzu: Make unlimited frame rate non persistent between game bootsNarr the Reg
2022-12-08video_core: Integrate SMAALiam
Co-authored-by: goldenx86 <goldenx86@users.noreply.github.com> Co-authored-by: BreadFish64 <breadfish64@users.noreply.github.com>
2022-12-06Merge pull request #9370 from liamwhite/break-unmappedmerry
core: add option to break on unmapped access
2022-12-06Merge pull request #9389 from lioncash/emumoveliamwhite
emulated_console/emulated_controller: std::move ParamPackage instances where applicable
2022-12-06configure_graphics: Make SPIRV backend string translatableLioncash
The parenthetical needs to be translatable, like with GLASM
2022-12-05emulated_controller: Remove unused parameter in GetMappedDevices()Lioncash
This isn't used, so it can be removed to make the function a little nicer.
2022-12-04Merge pull request #9273 from ameerj/per-game-profileliamwhite
Configuration: Add per-game input profiles
2022-12-03Merge pull request #9344 from liamwhite/nullbunnei
video_core: add null backend
2022-12-02Merge pull request #9303 from liamwhite/new-vulkan-initMatías Locatti
Vulkan: update initialization
2022-12-02core: add option to break on unmapped accessLiam
2022-11-28video_core: add null backendLiam
2022-11-28configure_input_player: Fix profile saving when using handheld controller typeameerj
2022-11-28config: Custom profile detection fixesameerj
Also only reads/writes applicable configs for the custom profiles.
2022-11-28configure_input_per_game: Allow configuring all 8 playersameerj
2022-11-27Merge pull request #8829 from Docteh/qt6_0002liamwhite
CMake: rework for Qt6 support
2022-11-27Vulkan: update initializationLiam
Co-authored-by: bylaws <bylaws@users.noreply.github.com>
2022-11-26Sharpness instead of SharpeningMatías Locatti
2022-11-25configure_graphics: Implement custom FSR Sharpening settinglat9nq
2022-11-24FSR Sharpening Slider part 1 - only a global sliderMatías Locatti
2022-11-20Configuration: Add per-game input profilesameerj
2022-11-17Qt6: Disable IR Sensor when compiling with Qt6Kyle Kienapfel
Gating the IR Sensor code behind a macro like so `#if (QT_VERSION < QT_VERSION_CHECK(6, 0, 0)) && YUZU_USE_QT_MULTIMEDIA` The YUZU_USE_QT_MULTIMEDIA flag is implemented in later commit Also the locale fix in src/yuzu/main.cpp is now gated against Qt6, as it causes compilation error
2022-11-15configure_profile_manager: Cleanup reference/pointer usagelat9nq
Co-authored-by: Morph <39850852+Morph1984@users.noreply.github.com> Co-authored-by: Mai M. <mathew1800@gmail.com>
2022-11-15configure_profile_manager: Remove profile picture borderlat9nq
The border adds its own width at least on Linux which causes the icon to be offset by 1px, and cropped by 2px on the bottom and right sides.
2022-11-15configure_profile_manager: Use a custom dialog for deletionlat9nq
A hopefully more informative dialog that most importantly notifies the user that their saves will be deleted with the user profile. cpm: Only keep track of UI elements that we need cpm: Remove unused forward declarations cpm: Add missing include
2022-11-04UI: Add options to hide extra columns (#9093)Piplup
UI change that allows the user to hide the size and or file types columns
2022-10-19UI: Add option to hide the compatibility listKyle Kienapfel
Option is added directly below the option for the addons column Defaulting to hide compatibility list. Changing default works properly. Co-authored-by: Piplup <piplup55@users.noreply.github.com>
2022-10-13Merge pull request #9039 from Kelebek1/auto_backendliamwhite
Auto select the SDL audio backend when Cubeb latency is too high
2022-10-12Merge pull request #9047 from german77/steam-aspectbunnei
yuzu: Add 16:10 aspect ratio
2022-10-10yuzu: Add 16:10 aspect ratioNarr the Reg
2022-10-09Choose the SDL audio backend when Cubeb reports too high of a latencyKelebek1