diff options
| author | 2018-11-01 00:34:56 -0400 | |
|---|---|---|
| committer | 2018-11-01 00:34:56 -0400 | |
| commit | 9afcbba8e49ef33c56af08bbed1dcded4bb2bb09 (patch) | |
| tree | be4a7da66ce796ec4b1a48168172c9f9c196748b /src/video_core/engines | |
| parent | Merge pull request #1622 from bunnei/fix-macros (diff) | |
| parent | Assert Control Flow Instructions using Control Codes (diff) | |
| download | yuzu-9afcbba8e49ef33c56af08bbed1dcded4bb2bb09.tar.gz yuzu-9afcbba8e49ef33c56af08bbed1dcded4bb2bb09.tar.xz yuzu-9afcbba8e49ef33c56af08bbed1dcded4bb2bb09.zip | |
Merge pull request #1527 from FernandoS27/assert-flow
Assert Control Flow Instructions using Control Codes
Diffstat (limited to 'src/video_core/engines')
| -rw-r--r-- | src/video_core/engines/shader_bytecode.h | 1 |
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 { | |||
| 1235 | BitField<60, 1, u64> is_b_gpr; | 1235 | BitField<60, 1, u64> is_b_gpr; |
| 1236 | BitField<59, 1, u64> is_c_gpr; | 1236 | BitField<59, 1, u64> is_c_gpr; |
| 1237 | BitField<20, 24, s64> smem_imm; | 1237 | BitField<20, 24, s64> smem_imm; |
| 1238 | BitField<0, 5, ControlCode> flow_control_code; | ||
| 1238 | 1239 | ||
| 1239 | Attribute attribute; | 1240 | Attribute attribute; |
| 1240 | Sampler sampler; | 1241 | Sampler sampler; |