mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu.git
				synced 2025-05-12 00:45:25 +00:00 
			
		
		
		
	GPU: Don't try to parse the depth test function if the depth test is disabled.
This commit is contained in:
		
							parent
							
								
									92c7135065
								
							
						
					
					
						commit
						65c664560c
					
				@ -735,6 +735,10 @@ void RasterizerOpenGL::SyncDepthTestState() {
 | 
			
		||||
 | 
			
		||||
    state.depth.test_enabled = regs.depth_test_enable != 0;
 | 
			
		||||
    state.depth.write_mask = regs.depth_write_enabled ? GL_TRUE : GL_FALSE;
 | 
			
		||||
 | 
			
		||||
    if (!state.depth.test_enabled)
 | 
			
		||||
        return;
 | 
			
		||||
 | 
			
		||||
    state.depth.test_func = MaxwellToGL::ComparisonOp(regs.depth_test_func);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user