Browse Source

shader_bytecode: Fixup half float's operator B encoding

ReinUsesLisp 7 năm trước cách đây
mục cha
commit
ef061481c5

+ 1 - 1
src/video_core/engines/shader_bytecode.h

@@ -609,7 +609,7 @@ union Instruction {
 
 
         BitField<31, 1, u64> negate_b;
         BitField<31, 1, u64> negate_b;
         BitField<30, 1, u64> abs_b;
         BitField<30, 1, u64> abs_b;
-        BitField<47, 2, HalfType> type_b;
+        BitField<28, 2, HalfType> type_b;
 
 
         BitField<35, 2, HalfType> type_c;
         BitField<35, 2, HalfType> type_c;
     } alu_half;
     } alu_half;