diff options
author | Subv <subv2112@gmail.com> | 2018-06-04 18:58:29 +0200 |
---|---|---|
committer | Subv <subv2112@gmail.com> | 2018-06-04 23:41:28 +0200 |
commit | 2933521a08f483d3de80f455326e6f7eb5d3cbae (patch) | |
tree | 83c1e9f6a7ec53b01a58be2c6d8137a6b7117646 /src/video_core/engines | |
parent | GPU: Corrected the I2F_R implementation. (diff) | |
download | yuzu-2933521a08f483d3de80f455326e6f7eb5d3cbae.tar yuzu-2933521a08f483d3de80f455326e6f7eb5d3cbae.tar.gz yuzu-2933521a08f483d3de80f455326e6f7eb5d3cbae.tar.bz2 yuzu-2933521a08f483d3de80f455326e6f7eb5d3cbae.tar.lz yuzu-2933521a08f483d3de80f455326e6f7eb5d3cbae.tar.xz yuzu-2933521a08f483d3de80f455326e6f7eb5d3cbae.tar.zst yuzu-2933521a08f483d3de80f455326e6f7eb5d3cbae.zip |
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 da64430e9..77c8399f1 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; |