Преглед изворни кода

Pica/Regs: Correct bit width for blend-equations

Jannik Vogel пре 9 година
родитељ
комит
1b397c77fa
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      src/video_core/regs_framebuffer.h

+ 2 - 2
src/video_core/regs_framebuffer.h

@@ -89,8 +89,8 @@ struct FramebufferRegs {
         };
         };
 
 
         union {
         union {
-            BitField<0, 8, BlendEquation> blend_equation_rgb;
-            BitField<8, 8, BlendEquation> blend_equation_a;
+            BitField<0, 3, BlendEquation> blend_equation_rgb;
+            BitField<8, 3, BlendEquation> blend_equation_a;
 
 
             BitField<16, 4, BlendFactor> factor_source_rgb;
             BitField<16, 4, BlendFactor> factor_source_rgb;
             BitField<20, 4, BlendFactor> factor_dest_rgb;
             BitField<20, 4, BlendFactor> factor_dest_rgb;