1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-01-15 20:30:12 -06:00

Pica/Regs: Correct bit width for blend-equations

This commit is contained in:
Jannik Vogel 2017-04-08 18:33:17 +02:00
parent 26979cd6ef
commit 1b397c77fa

View File

@ -89,8 +89,8 @@ struct FramebufferRegs {
};
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<20, 4, BlendFactor> factor_dest_rgb;