diff options
| author | bunnei <bunneidev@gmail.com> | 2018-06-04 19:04:20 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-06-04 19:04:20 -0400 |
| commit | 37fd4e6d9b553f9c5c8f4a8b30d0dd2a66f5f89d (patch) | |
| tree | 84f08ea733d291fef4b12e03498d6d818f7698a8 /src/video_core/engines | |
| parent | cdd92dc692ae706a7641ca44a483b34859d8376f (diff) | |
| parent | 2933521a08f483d3de80f455326e6f7eb5d3cbae (diff) | |
Merge pull request #512 from Subv/fset
GPU: Corrected the FSET and I2F instructions.
Diffstat (limited to 'src/video_core/engines')
| -rw-r--r-- | src/video_core/engines/shader_bytecode.h | 2 |
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 a57b90632..e7ef7e71f 100644 --- a/src/video_core/engines/shader_bytecode.h +++ b/src/video_core/engines/shader_bytecode.h @@ -245,9 +245,9 @@ union Instruction { BitField<44, 1, u64> abs_b; BitField<45, 2, PredOperation> op; BitField<48, 4, PredCondition> cond; + BitField<52, 1, u64> bf; BitField<53, 1, u64> neg_b; BitField<54, 1, u64> abs_a; - BitField<52, 1, u64> bf; BitField<55, 1, u64> ftz; BitField<56, 1, u64> neg_imm; } fset; |
