summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar ReinUsesLisp2018-10-15 15:32:31 -0300
committerGravatar ReinUsesLisp2018-10-15 15:36:47 -0300
commit936c36a5144df183a4cbb8d41b72179f8b94547e (patch)
tree182e9678a0c0e3db1609e39044a62d3c58621a5a /src
parentgl_shader_decompiler: Fixup style inconsistencies (diff)
downloadyuzu-936c36a5144df183a4cbb8d41b72179f8b94547e.tar.gz
yuzu-936c36a5144df183a4cbb8d41b72179f8b94547e.tar.xz
yuzu-936c36a5144df183a4cbb8d41b72179f8b94547e.zip
shader_bytecode: Add Control Code enum 0xf
Control Code 0xf means to unconditionally execute the instruction. This value is passed to most BRA, EXIT and SYNC instructions (among others) but this may not always be the case.
Diffstat (limited to 'src')
-rw-r--r--src/video_core/engines/shader_bytecode.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h
index 9a59b65b3..f356f9a03 100644
--- a/src/video_core/engines/shader_bytecode.h
+++ b/src/video_core/engines/shader_bytecode.h
@@ -267,7 +267,7 @@ enum class ControlCode : u64 {
267 GTU = 12, 267 GTU = 12,
268 NEU = 13, 268 NEU = 13,
269 GEU = 14, 269 GEU = 14,
270 // 270 T = 15,
271 OFF = 16, 271 OFF = 16,
272 LO = 17, 272 LO = 17,
273 SFF = 18, 273 SFF = 18,