diff options
author | bunnei <bunneidev@gmail.com> | 2018-06-05 01:04:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-05 01:04:20 +0200 |
commit | 37fd4e6d9b553f9c5c8f4a8b30d0dd2a66f5f89d (patch) | |
tree | 84f08ea733d291fef4b12e03498d6d818f7698a8 /src/video_core/engines/shader_bytecode.h | |
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 yuzu-37fd4e6d9b553f9c5c8f4a8b30d0dd2a66f5f89d.tar.gz yuzu-37fd4e6d9b553f9c5c8f4a8b30d0dd2a66f5f89d.tar.bz2 yuzu-37fd4e6d9b553f9c5c8f4a8b30d0dd2a66f5f89d.tar.lz yuzu-37fd4e6d9b553f9c5c8f4a8b30d0dd2a66f5f89d.tar.xz yuzu-37fd4e6d9b553f9c5c8f4a8b30d0dd2a66f5f89d.tar.zst yuzu-37fd4e6d9b553f9c5c8f4a8b30d0dd2a66f5f89d.zip |
Diffstat (limited to 'src/video_core/engines/shader_bytecode.h')
-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; |