diff options
author | bunnei <bunneidev@gmail.com> | 2021-09-08 14:04:44 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-08 14:04:44 -0700 |
commit | 7e9163779dbdd549df039b2adb9fe8439a5e2c6e (patch) | |
tree | 3a89498f18ba98170f63e67c9ce7c7b082efcecc /src/shader_recompiler/backend/spirv/emit_context.h | |
parent | 6b16f7807ed02d990ad1df685976fe968ba71c3b (diff) | |
parent | b1e655f89824bb1c43fc5160cd879b60bb60dbad (diff) |
Merge pull request #6962 from vonchenplus/spirv_support_legacy_attribute
renderer_vulkan: Spirv support glsl legacy attribute
Diffstat (limited to 'src/shader_recompiler/backend/spirv/emit_context.h')
-rw-r--r-- | src/shader_recompiler/backend/spirv/emit_context.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/shader_recompiler/backend/spirv/emit_context.h b/src/shader_recompiler/backend/spirv/emit_context.h index e277bc358..847d0c0e6 100644 --- a/src/shader_recompiler/backend/spirv/emit_context.h +++ b/src/shader_recompiler/backend/spirv/emit_context.h @@ -268,10 +268,14 @@ public: Id write_global_func_u32x4{}; Id input_position{}; + Id input_front_color{}; + std::array<Id, 10> input_fixed_fnc_textures{}; std::array<Id, 32> input_generics{}; Id output_point_size{}; Id output_position{}; + Id output_front_color{}; + std::array<Id, 10> output_fixed_fnc_textures{}; std::array<std::array<GenericElementInfo, 4>, 32> output_generics{}; Id output_tess_level_outer{}; |