diff options
author | vonchenplus <vonchenplus@gmail.com> | 2021-10-26 17:09:44 +0200 |
---|---|---|
committer | vonchenplus <vonchenplus@gmail.com> | 2021-10-26 17:09:44 +0200 |
commit | 92bebecf4632fb5435d74a77d45bf56535eb85e4 (patch) | |
tree | 8a58ba7d65ebc9d5c3a38d4c3568d8bc021b204e /src/shader_recompiler/backend/spirv/emit_context.h | |
parent | Support gl_BackColor attribute (diff) | |
download | yuzu-92bebecf4632fb5435d74a77d45bf56535eb85e4.tar yuzu-92bebecf4632fb5435d74a77d45bf56535eb85e4.tar.gz yuzu-92bebecf4632fb5435d74a77d45bf56535eb85e4.tar.bz2 yuzu-92bebecf4632fb5435d74a77d45bf56535eb85e4.tar.lz yuzu-92bebecf4632fb5435d74a77d45bf56535eb85e4.tar.xz yuzu-92bebecf4632fb5435d74a77d45bf56535eb85e4.tar.zst yuzu-92bebecf4632fb5435d74a77d45bf56535eb85e4.zip |
Diffstat (limited to 'src/shader_recompiler/backend/spirv/emit_context.h')
-rw-r--r-- | src/shader_recompiler/backend/spirv/emit_context.h | 2 |
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 d2bc0a952..8818269a5 100644 --- a/src/shader_recompiler/backend/spirv/emit_context.h +++ b/src/shader_recompiler/backend/spirv/emit_context.h @@ -269,6 +269,7 @@ public: Id input_position{}; Id input_front_color{}; + Id input_front_secondary_color{}; Id input_back_color{}; std::array<Id, 10> input_fixed_fnc_textures{}; std::array<Id, 32> input_generics{}; @@ -276,6 +277,7 @@ public: Id output_point_size{}; Id output_position{}; Id output_front_color{}; + Id output_front_secondary_color{}; Id output_back_color{}; std::array<Id, 10> output_fixed_fnc_textures{}; std::array<std::array<GenericElementInfo, 4>, 32> output_generics{}; |