diff --git a/voxygen/src/render/pipelines/shadow.rs b/voxygen/src/render/pipelines/shadow.rs index a74d4e7957..72b9b378da 100644 --- a/voxygen/src/render/pipelines/shadow.rs +++ b/voxygen/src/render/pipelines/shadow.rs @@ -166,7 +166,7 @@ impl ShadowFigurePipeline { topology: wgpu::PrimitiveTopology::TriangleList, strip_index_format: None, front_face: wgpu::FrontFace::Ccw, - cull_mode: wgpu::CullMode::Back, + cull_mode: wgpu::CullMode::Front, polygon_mode: wgpu::PolygonMode::Fill, }, depth_stencil: Some(wgpu::DepthStencilState { @@ -240,7 +240,7 @@ impl ShadowPipeline { topology: wgpu::PrimitiveTopology::TriangleList, strip_index_format: None, front_face: wgpu::FrontFace::Ccw, - cull_mode: wgpu::CullMode::Back, + cull_mode: wgpu::CullMode::Front, polygon_mode: wgpu::PolygonMode::Fill, }, depth_stencil: Some(wgpu::DepthStencilState {