aboutsummaryrefslogtreecommitdiff
path: root/src/shader_recompiler/backend/spirv/emit_context.h
diff options
context:
space:
mode:
authorvonchenplus <vonchenplus@gmail.com>2021-10-31 22:02:05 +0800
committervonchenplus <vonchenplus@gmail.com>2021-10-31 23:34:17 +0800
commit49f9a442356d582d31832e79098fd6db22f0f4c3 (patch)
treeb8e3a308f16f0e213b11af97d82275014c16ab98 /src/shader_recompiler/backend/spirv/emit_context.h
parent36c21ff6cbffd55ba9314314ee8f414181fd4f9b (diff)
Support gl_FogFragCoord attribute
Diffstat (limited to 'src/shader_recompiler/backend/spirv/emit_context.h')
-rw-r--r--src/shader_recompiler/backend/spirv/emit_context.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/shader_recompiler/backend/spirv/emit_context.h b/src/shader_recompiler/backend/spirv/emit_context.h
index a08622099a..e1af12a38a 100644
--- a/src/shader_recompiler/backend/spirv/emit_context.h
+++ b/src/shader_recompiler/backend/spirv/emit_context.h
@@ -272,6 +272,7 @@ public:
Id input_front_secondary_color{};
Id input_back_color{};
Id input_back_secondary_color{};
+ Id input_fog_frag_coord{};
std::array<Id, 10> input_fixed_fnc_textures{};
std::array<Id, 32> input_generics{};
@@ -281,6 +282,7 @@ public:
Id output_front_secondary_color{};
Id output_back_color{};
Id output_back_secondary_color{};
+ Id output_fog_frag_coord{};
std::array<Id, 10> output_fixed_fnc_textures{};
std::array<std::array<GenericElementInfo, 4>, 32> output_generics{};