Browse Source
Merge pull request #9589 from liamwhite/default
renderer_vulkan: disable turbo by default
pull/15/merge
Morph
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/common/settings.h
|
|
|
@ -415,7 +415,7 @@ struct Values { |
|
|
|
// Renderer |
|
|
|
SwitchableSetting<RendererBackend, true> renderer_backend{ |
|
|
|
RendererBackend::Vulkan, RendererBackend::OpenGL, RendererBackend::Null, "backend"}; |
|
|
|
SwitchableSetting<bool> renderer_force_max_clock{true, "force_max_clock"}; |
|
|
|
SwitchableSetting<bool> renderer_force_max_clock{false, "force_max_clock"}; |
|
|
|
Setting<bool> renderer_debug{false, "debug"}; |
|
|
|
Setting<bool> renderer_shader_feedback{false, "shader_feedback"}; |
|
|
|
Setting<bool> enable_nsight_aftermath{false, "nsight_aftermath"}; |
|
|
|
|