mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-16 17:57:47 +00:00
Shader_IR: allow else derivation to be optional.
This commit is contained in:
parent
8d882ef69a
commit
9e8c57f049
7 changed files with 18 additions and 10 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue