summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/varying_state.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/shader_recompiler/varying_state.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/shader_recompiler/varying_state.h b/src/shader_recompiler/varying_state.h
index 9d7b24a76..bc4f273c8 100644
--- a/src/shader_recompiler/varying_state.h
+++ b/src/shader_recompiler/varying_state.h
@@ -53,7 +53,8 @@ struct VaryingState {
53 return AnyComponent(IR::Attribute::ColorFrontDiffuseR) || 53 return AnyComponent(IR::Attribute::ColorFrontDiffuseR) ||
54 AnyComponent(IR::Attribute::ColorFrontSpecularR) || 54 AnyComponent(IR::Attribute::ColorFrontSpecularR) ||
55 AnyComponent(IR::Attribute::ColorBackDiffuseR) || 55 AnyComponent(IR::Attribute::ColorBackDiffuseR) ||
56 AnyComponent(IR::Attribute::ColorBackSpecularR) || FixedFunctionTexture(); 56 AnyComponent(IR::Attribute::ColorBackSpecularR) || FixedFunctionTexture() ||
57 mask[static_cast<size_t>(IR::Attribute::FogCoordinate)];
57 } 58 }
58 59
59 [[nodiscard]] bool FixedFunctionTexture() const noexcept { 60 [[nodiscard]] bool FixedFunctionTexture() const noexcept {