mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-11-04 00:49:02 -06:00 
			
		
		
		
	Merge pull request #3998 from ReinUsesLisp/init-3d
maxwell_3d: Initialize more registers to their expected value
This commit is contained in:
		@@ -106,7 +106,11 @@ void Maxwell3D::InitializeRegisterDefaults() {
 | 
				
			|||||||
    regs.rasterize_enable = 1;
 | 
					    regs.rasterize_enable = 1;
 | 
				
			||||||
    regs.rt_separate_frag_data = 1;
 | 
					    regs.rt_separate_frag_data = 1;
 | 
				
			||||||
    regs.framebuffer_srgb = 1;
 | 
					    regs.framebuffer_srgb = 1;
 | 
				
			||||||
 | 
					    regs.line_width_aliased = 1.0f;
 | 
				
			||||||
 | 
					    regs.line_width_smooth = 1.0f;
 | 
				
			||||||
    regs.front_face = Maxwell3D::Regs::FrontFace::ClockWise;
 | 
					    regs.front_face = Maxwell3D::Regs::FrontFace::ClockWise;
 | 
				
			||||||
 | 
					    regs.polygon_mode_back = Maxwell3D::Regs::PolygonMode::Fill;
 | 
				
			||||||
 | 
					    regs.polygon_mode_front = Maxwell3D::Regs::PolygonMode::Fill;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    shadow_state = regs;
 | 
					    shadow_state = regs;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user