mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +00:00 
			
		
		
		
	Merge pull request #3322 from ReinUsesLisp/vk-front-face
vk_graphics_pipeline: Set front facing properly
This commit is contained in:
		
						commit
						5a077c95ce
					
				@ -91,6 +91,7 @@ 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.cull.front_face = Maxwell3D::Regs::Cull::FrontFace::ClockWise;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    mme_inline[MAXWELL3D_REG_INDEX(draw.vertex_end_gl)] = true;
 | 
					    mme_inline[MAXWELL3D_REG_INDEX(draw.vertex_end_gl)] = true;
 | 
				
			||||||
    mme_inline[MAXWELL3D_REG_INDEX(draw.vertex_begin_gl)] = true;
 | 
					    mme_inline[MAXWELL3D_REG_INDEX(draw.vertex_begin_gl)] = true;
 | 
				
			||||||
 | 
				
			|||||||
@ -191,8 +191,7 @@ UniquePipeline VKGraphicsPipeline::CreatePipeline(const RenderPassParams& render
 | 
				
			|||||||
    const vk::PipelineRasterizationStateCreateInfo rasterizer_ci(
 | 
					    const vk::PipelineRasterizationStateCreateInfo rasterizer_ci(
 | 
				
			||||||
        {}, rs.depth_clamp_enable, false, vk::PolygonMode::eFill,
 | 
					        {}, rs.depth_clamp_enable, false, vk::PolygonMode::eFill,
 | 
				
			||||||
        rs.cull_enable ? MaxwellToVK::CullFace(rs.cull_face) : vk::CullModeFlagBits::eNone,
 | 
					        rs.cull_enable ? MaxwellToVK::CullFace(rs.cull_face) : vk::CullModeFlagBits::eNone,
 | 
				
			||||||
        rs.cull_enable ? MaxwellToVK::FrontFace(rs.front_face) : vk::FrontFace::eCounterClockwise,
 | 
					        MaxwellToVK::FrontFace(rs.front_face), rs.depth_bias_enable, 0.0f, 0.0f, 0.0f, 1.0f);
 | 
				
			||||||
        rs.depth_bias_enable, 0.0f, 0.0f, 0.0f, 1.0f);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    const vk::PipelineMultisampleStateCreateInfo multisampling_ci(
 | 
					    const vk::PipelineMultisampleStateCreateInfo multisampling_ci(
 | 
				
			||||||
        {}, vk::SampleCountFlagBits::e1, false, 0.0f, nullptr, false, false);
 | 
					        {}, vk::SampleCountFlagBits::e1, false, 0.0f, nullptr, false, false);
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user