diff options
| author | Subv <subv2112@gmail.com> | 2018-06-04 11:58:29 -0500 |
|---|---|---|
| committer | Subv <subv2112@gmail.com> | 2018-06-04 16:41:28 -0500 |
| commit | 2933521a08f483d3de80f455326e6f7eb5d3cbae (patch) | |
| tree | 83c1e9f6a7ec53b01a58be2c6d8137a6b7117646 /src/video_core/engines | |
| parent | f6679ce422ad825113b40e416452c9c43be3b73e (diff) | |
GPU: Use the bf bit in FSET to determine whether to write 0xFFFFFFFF or 1.0f.
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; |
