mirror of
https://github.com/maplibre/maplibre-rs.git
synced 2025-12-08 19:05:57 +00:00
Fix depth
This commit is contained in:
parent
5efe51ad5b
commit
daeabb4d77
@ -60,7 +60,7 @@ pub fn create_map_render_pipeline_description<'a>(
|
|||||||
depth_stencil: Some(wgpu::DepthStencilState {
|
depth_stencil: Some(wgpu::DepthStencilState {
|
||||||
format: DEPTH_TEXTURE_FORMAT,
|
format: DEPTH_TEXTURE_FORMAT,
|
||||||
depth_write_enabled: true,
|
depth_write_enabled: true,
|
||||||
depth_compare: wgpu::CompareFunction::Less,
|
depth_compare: wgpu::CompareFunction::LessEqual,
|
||||||
stencil: wgpu::StencilState {
|
stencil: wgpu::StencilState {
|
||||||
front: stencil_state,
|
front: stencil_state,
|
||||||
back: stencil_state,
|
back: stencil_state,
|
||||||
|
|||||||
@ -99,10 +99,10 @@ impl SceneParams {
|
|||||||
|
|
||||||
// Stroke primitive
|
// Stroke primitive
|
||||||
cpu_primitives[STROKE_PRIM_ID as usize] =
|
cpu_primitives[STROKE_PRIM_ID as usize] =
|
||||||
Primitive::new([0.0, 0.0, 0.0, 1.0], [0.0, 0.0], 3, 1.0, 0.0, 1.0);
|
Primitive::new([0.0, 0.0, 0.0, 1.0], [0.0, 0.0], 0, 1.0, 0.0, 1.0);
|
||||||
// Main fill primitive
|
// Main fill primitive
|
||||||
cpu_primitives[FILL_PRIM_ID as usize] =
|
cpu_primitives[FILL_PRIM_ID as usize] =
|
||||||
Primitive::new([0.0, 0.0, 0.0, 1.0], [0.0, 0.0], 1, 0.0, 0.0, 1.0);
|
Primitive::new([0.0, 0.0, 0.0, 1.0], [0.0, 0.0], 0, 0.0, 0.0, 1.0);
|
||||||
|
|
||||||
Self {
|
Self {
|
||||||
cpu_primitives,
|
cpu_primitives,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user