diff options
author | Feng Chen <vonchenplus@gmail.com> | 2021-09-03 18:12:06 +0200 |
---|---|---|
committer | Feng Chen <chen.feng@gloritysolutions.com> | 2021-09-06 04:36:45 +0200 |
commit | d994466a08efaa2c06237e6ac840bc0e9000d433 (patch) | |
tree | 384c1f3e32a34ff8680ee86c083bde8e9acfb788 /src/shader_recompiler/backend/spirv/emit_context.h | |
parent | Rename parameters (diff) | |
download | yuzu-d994466a08efaa2c06237e6ac840bc0e9000d433.tar yuzu-d994466a08efaa2c06237e6ac840bc0e9000d433.tar.gz yuzu-d994466a08efaa2c06237e6ac840bc0e9000d433.tar.bz2 yuzu-d994466a08efaa2c06237e6ac840bc0e9000d433.tar.lz yuzu-d994466a08efaa2c06237e6ac840bc0e9000d433.tar.xz yuzu-d994466a08efaa2c06237e6ac840bc0e9000d433.tar.zst yuzu-d994466a08efaa2c06237e6ac840bc0e9000d433.zip |
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, 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: Id input_position{}; Id input_front_color{}; - Id input_fixed_fnc_texture{}; + 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{}; - Id output_fixed_fnc_texture; + std::array<Id, 10> output_fixed_fnc_textures{}; std::array<std::array<GenericElementInfo, 4>, 32> output_generics{}; Id output_tess_level_outer{}; |