summaryrefslogtreecommitdiff
path: root/src/video_core/shader/node.h
diff options
context:
space:
mode:
authorGravatar Fernando Sahmkow2019-06-25 13:03:51 -0400
committerGravatar FernandoS272019-07-09 08:14:39 -0400
commitd5533b440c764093c04a4859b30fc78ddb0e0bbe (patch)
treef9fea3823e0f55787549f2f1d9fc332118449bfc /src/video_core/shader/node.h
parentshader_ir: Decompile Flow Stack (diff)
downloadyuzu-d5533b440c764093c04a4859b30fc78ddb0e0bbe.tar.gz
yuzu-d5533b440c764093c04a4859b30fc78ddb0e0bbe.tar.xz
yuzu-d5533b440c764093c04a4859b30fc78ddb0e0bbe.zip
shader_ir: Unify blocks in decompiled shaders.
Diffstat (limited to 'src/video_core/shader/node.h')
-rw-r--r--src/video_core/shader/node.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/video_core/shader/node.h b/src/video_core/shader/node.h
index e468758a6..7427ed896 100644
--- a/src/video_core/shader/node.h
+++ b/src/video_core/shader/node.h
@@ -148,12 +148,12 @@ enum class OperationCode {
148 148
149 ImageStore, /// (MetaImage, float[N] coords) -> void 149 ImageStore, /// (MetaImage, float[N] coords) -> void
150 150
151 Branch, /// (uint branch_target) -> void 151 Branch, /// (uint branch_target) -> void
152 BranchIndirect,/// (uint branch_target) -> void 152 BranchIndirect, /// (uint branch_target) -> void
153 PushFlowStack, /// (uint branch_target) -> void 153 PushFlowStack, /// (uint branch_target) -> void
154 PopFlowStack, /// () -> void 154 PopFlowStack, /// () -> void
155 Exit, /// () -> void 155 Exit, /// () -> void
156 Discard, /// () -> void 156 Discard, /// () -> void
157 157
158 EmitVertex, /// () -> void 158 EmitVertex, /// () -> void
159 EndPrimitive, /// () -> void 159 EndPrimitive, /// () -> void