diff options
| author | bunnei <bunneidev@gmail.com> | 2018-06-04 20:47:11 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-06-04 20:47:11 -0400 |
| commit | f564822e781ade1fe16ecd3cf93f1ffa247ed82e (patch) | |
| tree | c51f197ddaac4a0c9df01b87aef6d5bdbb6a0e2f /src/video_core/engines | |
| parent | 37fd4e6d9b553f9c5c8f4a8b30d0dd2a66f5f89d (diff) | |
| parent | 90cddf1996216fe5a1058473dfc68ba43893407e (diff) | |
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 { } fsetp; union { + BitField<0, 3, u64> pred0; + BitField<3, 3, u64> pred3; + BitField<39, 3, u64> pred39; + BitField<42, 1, u64> neg_pred; + BitField<45, 2, PredOperation> op; + BitField<48, 1, u64> is_signed; + BitField<49, 3, PredCondition> cond; + } isetp; + + union { BitField<39, 3, u64> pred39; BitField<42, 1, u64> neg_pred; BitField<43, 1, u64> neg_a; |
