mirror of
https://github.com/hannobraun/Fornjot
synced 2025-11-28 02:12:08 +00:00
Make configuration more explicit
This commit is contained in:
parent
fdf3ffd88f
commit
ed62604435
@ -109,7 +109,15 @@ impl Renderer {
|
|||||||
write_mask: wgpu::ColorWrites::all(),
|
write_mask: wgpu::ColorWrites::all(),
|
||||||
})],
|
})],
|
||||||
}),
|
}),
|
||||||
primitive: wgpu::PrimitiveState::default(),
|
primitive: wgpu::PrimitiveState {
|
||||||
|
topology: wgpu::PrimitiveTopology::TriangleList,
|
||||||
|
strip_index_format: None,
|
||||||
|
front_face: wgpu::FrontFace::Ccw,
|
||||||
|
cull_mode: None,
|
||||||
|
unclipped_depth: false,
|
||||||
|
polygon_mode: wgpu::PolygonMode::Fill,
|
||||||
|
conservative: false,
|
||||||
|
},
|
||||||
depth_stencil: None,
|
depth_stencil: None,
|
||||||
multisample: wgpu::MultisampleState::default(),
|
multisample: wgpu::MultisampleState::default(),
|
||||||
multiview: None,
|
multiview: None,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user