summaryrefslogtreecommitdiff
path: root/src/common/settings.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* settings: CleanupGravatar lat9nq2023-07-211-2/+3
| | | | | | Addresses review feedback Co-authored-by: Morph <39850852+Morph1984@users.noreply.github.com>
* settings: Require time zone setting value for stirngGravatar lat9nq2023-07-211-2/+2
|
* settings,uisettings: Remove leading underscoreGravatar lat9nq2023-07-211-1/+1
|
* common,yuzu-qt: Avoid explicit instantiation on old clangGravatar lat9nq2023-07-211-0/+2
| | | | | Clang versions < 15 have compile issues with explicit instantiation. Disable it for these versions.
* settings: Move IsConfiguringGlobal to settings_commonGravatar lat9nq2023-07-211-9/+0
|
* settings: Move some simple data to BasicSettingGravatar lat9nq2023-07-211-8/+0
| | | | | Reduces the need for the compiler to duplicate this code, by about 100KB executable size.
* (ui,)settings: Use explicit instantiationGravatar lat9nq2023-07-211-0/+52
| | | | Reduces compile times a tad on clang.
* settings: Report all contained settings valuesGravatar lat9nq2023-07-211-45/+19
| | | | | | Also adds a couple characters that denotes the state of the setting. M for modified, or not default. C for custom, in context of per-game settings.
* settings,general: Rename non-confirming enumsGravatar lat9nq2023-07-211-3/+3
|
* configure_audio: Implement ui generationGravatar lat9nq2023-07-211-1/+1
| | | | | | | | | | | | | | | | Needs a considerable amount of management specific to some of the comoboboxes due to the audio engine configuration. general: Partial audio config implmentation configure_audio: Implement ui generation Needs a considerable amount of management specific to some of the comoboboxes due to the audio engine configuration. general: Partial audio config implmentation settings: Make audio settings as enums
* settings, uisettings: Initialize linkage counterGravatar lat9nq2023-07-211-1/+1
|
* configure_system: Implement with for loopGravatar lat9nq2023-07-211-0/+1
|
* settings: Add UiGeneral classGravatar lat9nq2023-07-211-0/+4
|
* settings: Recategorize a bitGravatar lat9nq2023-07-211-2/+5
| | | | Will help with generating config UI later.
* settings: Add a registry of settingsGravatar lat9nq2023-07-211-1/+51
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | LoadString: Sanitize input settings: Handle empty string, remove redundant category settings: Rename Input to Controls, FS to DataStorage settings: Fix Controls groups information settings: Move use_docked_mode to System (again) settings: Document settings: Add type identification function settings: Move registry into values settings: Move global_reset_registry into values settings: Separate AdvGraphics from Renderer settings: More document squash settings: Use linkage object uisettings: Move registry into settings Probably wont build without uisettings: Use settings linkage object config: Load settings with a map Uses the new all_settings vector to load settings. qt-config: Rename settings category qt config: Rename to read category config: Read/write contols category with for_each This is extremely limited due to the complexity of the Controls group, but this handles the the settings that use the interface. qt-config: Use new settings registry qt-config: Read/write advgrphics qt-config: Use settings linkage object yuzu_cmd: Load setting off of vector cmd-config: Finish settings rename config: Read controls settings group with for_each cmd/config: Move registry into values cmd: Read adv graphics cmd-config: Use settings linkage object
* settings,core,config_sys: Remove optional type from custom_rtc, rng_seedGravatar lat9nq2023-07-211-1/+2
| | | | core: Fix MSVC errors
* settings: Pool SetGlobal functionsGravatar lat9nq2023-07-211-59/+4
|
* settings,video_core: Consolidate ASTC decoding optionsGravatar lat9nq2023-07-211-2/+0
| | | | Just puts them all neatly into one place.
* settings: Catch runtime error from STLGravatar lat9nq2023-07-091-3/+2
| | | | | | This function throws a runtime error we can catch on old Windows 10 installs, so we can catch it here rather than disable this path for everybody.
* settings: Disable C++20 path on MSVCGravatar lat9nq2023-07-051-1/+2
| | | | | | | | Even though it compiles and runs fine on the latest Windows versions, older LTSC builds will crash due to lacking support somewhere in the OS. For now just disable it for MSVC until either Microsoft fixes this or we no longer support 1809 LTSC.
* settings: Clean up includesGravatar lat9nq2023-06-271-2/+3
| | | | | | Adds <version> since we are looking at C++ implementation version details. Also moves exception header includes into the if preprocessor command since we only use it there.
* settings: Catch runtime_error, fallback time zoneGravatar lat9nq2023-06-271-3/+15
| | | | | | Windows will let you select time zones that will fail in their own C++ implementation library. Evidently from the stack trace, we get a runtime error to work with, so catch it and use the fallback.
* Merge pull request #10603 from lat9nq/tz-more-completeGravatar bunnei2023-06-131-11/+20
|\ | | | | core,common: Implement missing time zone data/computations
| * common: Move system time zone string detectionGravatar lat9nq2023-06-051-72/+7
| | | | | | | | | | | | | | | | | | | | | | | | Moves it from Settings to Common::TimeZone, since this algorithm doesn't depend on the setting. It also lets us use it in other libraries. common: Various fixes time_zone: Don't double up the std::abs Too many absolute values were causing mirrored time zones to resolve as the same.
| * settings: Always report a valid time zoneGravatar lat9nq2023-06-051-2/+76
| | | | | | | | | | | | | | | | | | | | | | | | Prevents needing to deduce the non-Switch setting in core. Instead, we deduce the meaning of this setting where the heresy is committed, in common. settings: Remove strftime usage GetTimeZoneString: Use standard features Also forces GMT on MinGW due to broken strftime.
* | nvnflinger: allow locking framerate during video playbackGravatar Liam2023-06-081-0/+1
|/
* textures: add BC1 and BC3 compressors and recompression settingGravatar Liam2023-05-231-0/+2
|
* Merge pull request #10181 from lat9nq/intel-compute-toggleGravatar liamwhite2023-05-151-0/+1
|\ | | | | configure_graphics: Add option to enable compute pipelines for Intel proprietary
| * settings: Add enable compute pipelinesGravatar lat9nq2023-05-071-0/+1
| | | | | | | | | | | | For the Intel proprietary driver's deficiencies. settings: Restore compute option global state
* | Settings: add option to enable / disable reactive flushingGravatar Fernando Sahmkow2023-05-071-0/+2
|/
* Merge pull request #10125 from lat9nq/vsync-selectGravatar bunnei2023-05-061-2/+1
|\ | | | | configuration: Expose separate swap present modes
| * configuration: Expose separate swap present modesGravatar lat9nq2023-05-021-2/+1
| | | | | | | | | | | | | | | | Previously, yuzu would try and guess which vsync mode to use given different scenarios, but apparently we didn't always get it right. This exposes the separate modes in a drop-down the user can select. If a mode isn't available in Vulkan, it defaults to FIFO.
* | settings: remove pessimistic flushingGravatar Liam2023-05-031-1/+0
| |
* | Merge pull request #10124 from liamwhite/pebkacGravatar Morph2023-05-031-1/+2
|\ \ | |/ |/| settings: rename extended memory layout to unsafe, move from general to system
| * settings: rename extended memory layout to unsafe, move from general to systemGravatar Liam2023-04-301-1/+2
| |
* | vk_present_manager: Add toggle for async presentationGravatar GPUCode2023-05-011-0/+1
|/
* Merge pull request #9849 from ameerj/async-astcGravatar liamwhite2023-02-261-0/+2
|\ | | | | texture_cache: Add asynchronous ASTC texture decoding
| * configuration: Add async ASTC decode settingGravatar ameerj2023-02-221-0/+2
| |
* | settings: Add more input settings to the logGravatar Narr the Reg2023-02-211-0/+7
|/
* Update settings.cppGravatar m-HD2023-02-121-0/+4
| | | added missing graphical settings to RestoreGlobalState()
* CPPGravatar Matías Locatti2023-01-131-0/+8
|
* 1.5X resolution scaler optionGravatar Matías Locatti2023-01-131-0/+4
|
* Merge pull request #9552 from liamwhite/turboGravatar liamwhite2023-01-061-0/+1
|\ | | | | vulkan: implement 'turbo mode' clock booster
| * common: add setting for renderer clock workaroundGravatar Liam2023-01-041-0/+1
| |
* | config: Set the Vulkan driver pipeline cache option to be globalGravatar Wollnashorn2023-01-051-0/+1
|/
* Set: Allow setting device nicknameGravatar Chloe Marcec2022-12-131-0/+1
|
* settings: Reset FSR sharpening global state with the othersGravatar lat9nq2022-11-251-0/+1
|
* FSR Sharpening Slider part 1 - only a global sliderGravatar Matías Locatti2022-11-241-0/+1
|
* Add break statement in default casesGravatar Enrico Mancuso2022-11-091-0/+1
| | | | | | | According to the contributing page (https://github.com/yuzu-emu/yuzu/wiki/Contributing) the default cases should have a break statement default: // Yes, even break for the last case break;
* video_core: add option for pessimistic flushingGravatar Liam2022-08-251-0/+1
|