diff options
| author | 2018-06-04 19:04:20 -0400 | |
|---|---|---|
| committer | 2018-06-04 19:04:20 -0400 | |
| commit | 37fd4e6d9b553f9c5c8f4a8b30d0dd2a66f5f89d (patch) | |
| tree | 84f08ea733d291fef4b12e03498d6d818f7698a8 /src/video_core/engines | |
| parent | Merge pull request #501 from Subv/shader_bra (diff) | |
| parent | GPU: Use the bf bit in FSET to determine whether to write 0xFFFFFFFF or 1.0f. (diff) | |
| download | yuzu-37fd4e6d9b553f9c5c8f4a8b30d0dd2a66f5f89d.tar.gz yuzu-37fd4e6d9b553f9c5c8f4a8b30d0dd2a66f5f89d.tar.xz yuzu-37fd4e6d9b553f9c5c8f4a8b30d0dd2a66f5f89d.zip | |
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 { | |||
| 245 | BitField<44, 1, u64> abs_b; | 245 | BitField<44, 1, u64> abs_b; |
| 246 | BitField<45, 2, PredOperation> op; | 246 | BitField<45, 2, PredOperation> op; |
| 247 | BitField<48, 4, PredCondition> cond; | 247 | BitField<48, 4, PredCondition> cond; |
| 248 | BitField<52, 1, u64> bf; | ||
| 248 | BitField<53, 1, u64> neg_b; | 249 | BitField<53, 1, u64> neg_b; |
| 249 | BitField<54, 1, u64> abs_a; | 250 | BitField<54, 1, u64> abs_a; |
| 250 | BitField<52, 1, u64> bf; | ||
| 251 | BitField<55, 1, u64> ftz; | 251 | BitField<55, 1, u64> ftz; |
| 252 | BitField<56, 1, u64> neg_imm; | 252 | BitField<56, 1, u64> neg_imm; |
| 253 | } fset; | 253 | } fset; |