summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader/compiler_settings.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/video_core/shader/compiler_settings.h')
-rw-r--r--src/video_core/shader/compiler_settings.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/video_core/shader/compiler_settings.h b/src/video_core/shader/compiler_settings.h
index e1fb5bc3a..916018c01 100644
--- a/src/video_core/shader/compiler_settings.h
+++ b/src/video_core/shader/compiler_settings.h
@@ -19,7 +19,8 @@ enum class CompileDepth : u32 {
std::string CompileDepthAsString(CompileDepth cd);
struct CompilerSettings {
- CompileDepth depth;
+ CompileDepth depth{CompileDepth::NoFlowStack};
+ bool disable_else_derivation{true};
};
} // namespace VideoCommon::Shader