aboutsummaryrefslogtreecommitdiff
path: root/src/shader_recompiler/backend/spirv/emit_context.h
diff options
context:
space:
mode:
authorvonchenplus <vonchenplus@gmail.com>2021-10-26 23:14:40 +0800
committervonchenplus <vonchenplus@gmail.com>2021-10-26 23:14:40 +0800
commit36c21ff6cbffd55ba9314314ee8f414181fd4f9b (patch)
tree4eb30de1f55680c83761111d6adcb93659dfd459 /src/shader_recompiler/backend/spirv/emit_context.h
parent92bebecf4632fb5435d74a77d45bf56535eb85e4 (diff)
Support gl_BackSecondaryColor 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 8818269a55..a08622099a 100644
--- a/src/shader_recompiler/backend/spirv/emit_context.h
+++ b/src/shader_recompiler/backend/spirv/emit_context.h
@@ -271,6 +271,7 @@ public:
Id input_front_color{};
Id input_front_secondary_color{};
Id input_back_color{};
+ Id input_back_secondary_color{};
std::array<Id, 10> input_fixed_fnc_textures{};
std::array<Id, 32> input_generics{};
@@ -279,6 +280,7 @@ public:
Id output_front_color{};
Id output_front_secondary_color{};
Id output_back_color{};
+ Id output_back_secondary_color{};
std::array<Id, 10> output_fixed_fnc_textures{};
std::array<std::array<GenericElementInfo, 4>, 32> output_generics{};