summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/shader_bytecode.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-11-01 05:34:56 +0100
committerGitHub <noreply@github.com>2018-11-01 05:34:56 +0100
commit9afcbba8e49ef33c56af08bbed1dcded4bb2bb09 (patch)
treebe4a7da66ce796ec4b1a48168172c9f9c196748b /src/video_core/engines/shader_bytecode.h
parentMerge pull request #1622 from bunnei/fix-macros (diff)
parentAssert Control Flow Instructions using Control Codes (diff)
downloadyuzu-9afcbba8e49ef33c56af08bbed1dcded4bb2bb09.tar
yuzu-9afcbba8e49ef33c56af08bbed1dcded4bb2bb09.tar.gz
yuzu-9afcbba8e49ef33c56af08bbed1dcded4bb2bb09.tar.bz2
yuzu-9afcbba8e49ef33c56af08bbed1dcded4bb2bb09.tar.lz
yuzu-9afcbba8e49ef33c56af08bbed1dcded4bb2bb09.tar.xz
yuzu-9afcbba8e49ef33c56af08bbed1dcded4bb2bb09.tar.zst
yuzu-9afcbba8e49ef33c56af08bbed1dcded4bb2bb09.zip
Diffstat (limited to 'src/video_core/engines/shader_bytecode.h')
-rw-r--r--src/video_core/engines/shader_bytecode.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h
index 27c011e6f..83a6fd875 100644
--- a/src/video_core/engines/shader_bytecode.h
+++ b/src/video_core/engines/shader_bytecode.h
@@ -1235,6 +1235,7 @@ union Instruction {
BitField<60, 1, u64> is_b_gpr;
BitField<59, 1, u64> is_c_gpr;
BitField<20, 24, s64> smem_imm;
+ BitField<0, 5, ControlCode> flow_control_code;
Attribute attribute;
Sampler sampler;