summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/backend/glasm/emit_context.h
diff options
context:
space:
mode:
authorGravatar ReinUsesLisp2021-05-26 16:00:36 -0300
committerGravatar ameerj2021-07-22 21:51:33 -0400
commitf58f79c85dad7ad018a015cc6913f2789540ec22 (patch)
treee1ee7c8b1c3a0203a046188fa9edb2bb6d203967 /src/shader_recompiler/backend/glasm/emit_context.h
parentglasm: Skip phi moves on undefined instructions (diff)
downloadyuzu-f58f79c85dad7ad018a015cc6913f2789540ec22.tar.gz
yuzu-f58f79c85dad7ad018a015cc6913f2789540ec22.tar.xz
yuzu-f58f79c85dad7ad018a015cc6913f2789540ec22.zip
glasm: Implement Y direction
Diffstat (limited to 'src/shader_recompiler/backend/glasm/emit_context.h')
-rw-r--r--src/shader_recompiler/backend/glasm/emit_context.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/shader_recompiler/backend/glasm/emit_context.h b/src/shader_recompiler/backend/glasm/emit_context.h
index 057d74790..cd4213cb7 100644
--- a/src/shader_recompiler/backend/glasm/emit_context.h
+++ b/src/shader_recompiler/backend/glasm/emit_context.h
@@ -70,6 +70,8 @@ public:
70 Stage stage{}; 70 Stage stage{};
71 std::string_view stage_name = "invalid"; 71 std::string_view stage_name = "invalid";
72 std::string_view attrib_name = "invalid"; 72 std::string_view attrib_name = "invalid";
73
74 bool uses_y_direction{};
73}; 75};
74 76
75} // namespace Shader::Backend::GLASM 77} // namespace Shader::Backend::GLASM