mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-28 05:06:42 +00:00
config: default to Async Uber Shaders
This commit is contained in:
parent
abfa2ee529
commit
9b4162e567
1 changed files with 4 additions and 2 deletions
|
@ -20,7 +20,8 @@ const Info<int> GFX_ADAPTER{{System::GFX, "Hardware", "Adapter"}, 0};
|
||||||
// Graphics.Settings
|
// Graphics.Settings
|
||||||
|
|
||||||
const Info<bool> GFX_WIDESCREEN_HACK{{System::GFX, "Settings", "wideScreenHack"}, false};
|
const Info<bool> GFX_WIDESCREEN_HACK{{System::GFX, "Settings", "wideScreenHack"}, false};
|
||||||
const Info<AspectMode> GFX_ASPECT_RATIO{{System::GFX, "Settings", "AspectRatio"}, AspectMode::Melee};
|
const Info<AspectMode> GFX_ASPECT_RATIO{{System::GFX, "Settings", "AspectRatio"},
|
||||||
|
AspectMode::Melee};
|
||||||
const Info<AspectMode> GFX_SUGGESTED_ASPECT_RATIO{{System::GFX, "Settings", "SuggestedAspectRatio"},
|
const Info<AspectMode> GFX_SUGGESTED_ASPECT_RATIO{{System::GFX, "Settings", "SuggestedAspectRatio"},
|
||||||
AspectMode::Melee};
|
AspectMode::Melee};
|
||||||
const Info<bool> GFX_CROP{{System::GFX, "Settings", "Crop"}, false};
|
const Info<bool> GFX_CROP{{System::GFX, "Settings", "Crop"}, false};
|
||||||
|
@ -85,7 +86,8 @@ const Info<bool> GFX_SHADER_CACHE{{System::GFX, "Settings", "ShaderCache"}, true
|
||||||
const Info<bool> GFX_WAIT_FOR_SHADERS_BEFORE_STARTING{
|
const Info<bool> GFX_WAIT_FOR_SHADERS_BEFORE_STARTING{
|
||||||
{System::GFX, "Settings", "WaitForShadersBeforeStarting"}, false};
|
{System::GFX, "Settings", "WaitForShadersBeforeStarting"}, false};
|
||||||
const Info<ShaderCompilationMode> GFX_SHADER_COMPILATION_MODE{
|
const Info<ShaderCompilationMode> GFX_SHADER_COMPILATION_MODE{
|
||||||
{System::GFX, "Settings", "ShaderCompilationMode"}, ShaderCompilationMode::Synchronous};
|
{System::GFX, "Settings", "ShaderCompilationMode"},
|
||||||
|
ShaderCompilationMode::AsynchronousUberShaders};
|
||||||
const Info<int> GFX_SHADER_COMPILER_THREADS{{System::GFX, "Settings", "ShaderCompilerThreads"}, 1};
|
const Info<int> GFX_SHADER_COMPILER_THREADS{{System::GFX, "Settings", "ShaderCompilerThreads"}, 1};
|
||||||
const Info<int> GFX_SHADER_PRECOMPILER_THREADS{
|
const Info<int> GFX_SHADER_PRECOMPILER_THREADS{
|
||||||
{System::GFX, "Settings", "ShaderPrecompilerThreads"}, -1};
|
{System::GFX, "Settings", "ShaderPrecompilerThreads"}, -1};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue