diff --git a/render/wgpu/src/pipelines.rs b/render/wgpu/src/pipelines.rs index 7c8ec9bb1..22d1814d0 100644 --- a/render/wgpu/src/pipelines.rs +++ b/render/wgpu/src/pipelines.rs @@ -188,7 +188,7 @@ fn create_color_pipelines( depth_fail_op: wgpu::StencilOperation::Keep, pass_op: wgpu::StencilOperation::Replace, }, - read_mask: 0, + read_mask: 0xff, write_mask: 1 << i, }, }), @@ -356,7 +356,7 @@ fn create_bitmap_pipeline( depth_fail_op: wgpu::StencilOperation::Keep, pass_op: wgpu::StencilOperation::Replace, }, - read_mask: 0, + read_mask: 0xff, write_mask: 1 << i, }, }), @@ -518,7 +518,7 @@ fn create_gradient_pipeline( depth_fail_op: wgpu::StencilOperation::Keep, pass_op: wgpu::StencilOperation::Replace, }, - read_mask: 0, + read_mask: 0xff, write_mask: 1 << i, }, }),