summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/shader_info.h
diff options
context:
space:
mode:
authorGravatar ReinUsesLisp2021-04-14 18:09:18 -0300
committerGravatar ameerj2021-07-22 21:51:27 -0400
commitd8ec99dadaa033aa440671572ed38e2614815e11 (patch)
treeb17186775bbfe5d4c1d135aba73605407d7e080a /src/shader_recompiler/shader_info.h
parentspirv: Fix alpha test (diff)
downloadyuzu-d8ec99dadaa033aa440671572ed38e2614815e11.tar.gz
yuzu-d8ec99dadaa033aa440671572ed38e2614815e11.tar.xz
yuzu-d8ec99dadaa033aa440671572ed38e2614815e11.zip
spirv: Implement Layer stores
Diffstat (limited to 'src/shader_recompiler/shader_info.h')
-rw-r--r--src/shader_recompiler/shader_info.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/shader_recompiler/shader_info.h b/src/shader_recompiler/shader_info.h
index 15cf09c3d..e078b0fa1 100644
--- a/src/shader_recompiler/shader_info.h
+++ b/src/shader_recompiler/shader_info.h
@@ -109,6 +109,7 @@ struct Info {
109 bool stores_position{}; 109 bool stores_position{};
110 bool stores_point_size{}; 110 bool stores_point_size{};
111 bool stores_clip_distance{}; 111 bool stores_clip_distance{};
112 bool stores_layer{};
112 bool stores_viewport_index{}; 113 bool stores_viewport_index{};
113 bool stores_indexed_attributes{}; 114 bool stores_indexed_attributes{};
114 115