summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/backend/spirv/emit_context.h
diff options
context:
space:
mode:
authorGravatar Feng Chen2021-09-04 00:12:06 +0800
committerGravatar Feng Chen2021-09-06 10:36:45 +0800
commitd994466a08efaa2c06237e6ac840bc0e9000d433 (patch)
tree384c1f3e32a34ff8680ee86c083bde8e9acfb788 /src/shader_recompiler/backend/spirv/emit_context.h
parentRename parameters (diff)
downloadyuzu-d994466a08efaa2c06237e6ac840bc0e9000d433.tar.gz
yuzu-d994466a08efaa2c06237e6ac840bc0e9000d433.tar.xz
yuzu-d994466a08efaa2c06237e6ac840bc0e9000d433.zip
Implement intput and output fixed fnc textures
Diffstat (limited to 'src/shader_recompiler/backend/spirv/emit_context.h')
-rw-r--r--src/shader_recompiler/backend/spirv/emit_context.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shader_recompiler/backend/spirv/emit_context.h b/src/shader_recompiler/backend/spirv/emit_context.h
index 9a76e1ca9..847d0c0e6 100644
--- a/src/shader_recompiler/backend/spirv/emit_context.h
+++ b/src/shader_recompiler/backend/spirv/emit_context.h
@@ -269,13 +269,13 @@ public:
269 269
270 Id input_position{}; 270 Id input_position{};
271 Id input_front_color{}; 271 Id input_front_color{};
272 Id input_fixed_fnc_texture{}; 272 std::array<Id, 10> input_fixed_fnc_textures{};
273 std::array<Id, 32> input_generics{}; 273 std::array<Id, 32> input_generics{};
274 274
275 Id output_point_size{}; 275 Id output_point_size{};
276 Id output_position{}; 276 Id output_position{};
277 Id output_front_color{}; 277 Id output_front_color{};
278 Id output_fixed_fnc_texture; 278 std::array<Id, 10> output_fixed_fnc_textures{};
279 std::array<std::array<GenericElementInfo, 4>, 32> output_generics{}; 279 std::array<std::array<GenericElementInfo, 4>, 32> output_generics{};
280 280
281 Id output_tess_level_outer{}; 281 Id output_tess_level_outer{};