diff options
| author | 2018-06-04 20:47:11 -0400 | |
|---|---|---|
| committer | 2018-06-04 20:47:11 -0400 | |
| commit | f564822e781ade1fe16ecd3cf93f1ffa247ed82e (patch) | |
| tree | c51f197ddaac4a0c9df01b87aef6d5bdbb6a0e2f /src/video_core/engines | |
| parent | Merge pull request #512 from Subv/fset (diff) | |
| parent | GPU: Use explicit types when retrieving the uniform values for fsetp/fset and... (diff) | |
| download | yuzu-f564822e781ade1fe16ecd3cf93f1ffa247ed82e.tar.gz yuzu-f564822e781ade1fe16ecd3cf93f1ffa247ed82e.tar.xz yuzu-f564822e781ade1fe16ecd3cf93f1ffa247ed82e.zip | |
Merge pull request #510 from Subv/isetp
GPU: Implemented the ISETP_R and ISETP_C instructions
Diffstat (limited to 'src/video_core/engines')
| -rw-r--r-- | src/video_core/engines/shader_bytecode.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h index e7ef7e71f..3add56155 100644 --- a/src/video_core/engines/shader_bytecode.h +++ b/src/video_core/engines/shader_bytecode.h | |||
| @@ -239,6 +239,16 @@ union Instruction { | |||
| 239 | } fsetp; | 239 | } fsetp; |
| 240 | 240 | ||
| 241 | union { | 241 | union { |
| 242 | BitField<0, 3, u64> pred0; | ||
| 243 | BitField<3, 3, u64> pred3; | ||
| 244 | BitField<39, 3, u64> pred39; | ||
| 245 | BitField<42, 1, u64> neg_pred; | ||
| 246 | BitField<45, 2, PredOperation> op; | ||
| 247 | BitField<48, 1, u64> is_signed; | ||
| 248 | BitField<49, 3, PredCondition> cond; | ||
| 249 | } isetp; | ||
| 250 | |||
| 251 | union { | ||
| 242 | BitField<39, 3, u64> pred39; | 252 | BitField<39, 3, u64> pred39; |
| 243 | BitField<42, 1, u64> neg_pred; | 253 | BitField<42, 1, u64> neg_pred; |
| 244 | BitField<43, 1, u64> neg_a; | 254 | BitField<43, 1, u64> neg_a; |