summaryrefslogtreecommitdiff
path: root/workspaces/main/shaders/circle_mask_render.wgsl
diff options
context:
space:
mode:
authorskal <pascal.massimino@gmail.com>2026-02-28 02:39:04 +0100
committerskal <pascal.massimino@gmail.com>2026-02-28 02:39:04 +0100
commit472c2258dbeca000a454ea1781f09df63477563e (patch)
tree98ac75c3824f19f4a598a807b3cb6aa13e8cb0c3 /workspaces/main/shaders/circle_mask_render.wgsl
parent1c5a9fb7b8c704a59ec58894adf46d73d1615072 (diff)
replace wgsl type: vec4<f32> -> vec4f ..
Diffstat (limited to 'workspaces/main/shaders/circle_mask_render.wgsl')
-rw-r--r--workspaces/main/shaders/circle_mask_render.wgsl2
1 files changed, 1 insertions, 1 deletions
diff --git a/workspaces/main/shaders/circle_mask_render.wgsl b/workspaces/main/shaders/circle_mask_render.wgsl
index 94659f7..a70b48d 100644
--- a/workspaces/main/shaders/circle_mask_render.wgsl
+++ b/workspaces/main/shaders/circle_mask_render.wgsl
@@ -17,5 +17,5 @@
discard;
}
- return vec4<f32>(0.0, 1.0, 0.0, 1.0);
+ return vec4f(0.0, 1.0, 0.0, 1.0);
}