mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu.git
				synced 2025-05-12 00:45:25 +00:00 
			
		
		
		
	Merge pull request #2658 from JayFoxRox/blend-equation-fix
Pica/Regs: Correct bit width for blend-equations
This commit is contained in:
		
						commit
						9007c48992
					
				@ -89,8 +89,8 @@ struct FramebufferRegs {
 | 
				
			|||||||
        };
 | 
					        };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        union {
 | 
					        union {
 | 
				
			||||||
            BitField<0, 8, BlendEquation> blend_equation_rgb;
 | 
					            BitField<0, 3, BlendEquation> blend_equation_rgb;
 | 
				
			||||||
            BitField<8, 8, BlendEquation> blend_equation_a;
 | 
					            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;
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user