mirror of
https://github.com/hannobraun/Fornjot
synced 2025-11-27 18:02:07 +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(),
|
||||
})],
|
||||
}),
|
||||
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,
|
||||
multisample: wgpu::MultisampleState::default(),
|
||||
multiview: None,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user