summaryrefslogtreecommitdiffstats
path: root/wgpu
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector@hecrj.dev>2024-09-11 00:43:50 +0200
committerLibravatar GitHub <noreply@github.com>2024-09-11 00:43:50 +0200
commit2eb1cc54ac3278fc01fbe0079c08dfa91b675d0a (patch)
treed95fad8d242f3f5469baf01f4ce853d3f8d8e1f5 /wgpu
parent07c9a2a8a99ecd60c8cd0d1699d1d2c2e4a46c76 (diff)
parent5c2185f123f58cc54364dabba900d3a10052bc88 (diff)
downloadiced-2eb1cc54ac3278fc01fbe0079c08dfa91b675d0a.tar.gz
iced-2eb1cc54ac3278fc01fbe0079c08dfa91b675d0a.tar.bz2
iced-2eb1cc54ac3278fc01fbe0079c08dfa91b675d0a.zip
Merge pull request #2484 from vladh/fix-radii-typo
wgpu: Fix “radii” typo
Diffstat (limited to 'wgpu')
-rw-r--r--wgpu/src/shader/quad.wgsl14
1 files changed, 7 insertions, 7 deletions
diff --git a/wgpu/src/shader/quad.wgsl b/wgpu/src/shader/quad.wgsl
index a367d5e6..b213c8cf 100644
--- a/wgpu/src/shader/quad.wgsl
+++ b/wgpu/src/shader/quad.wgsl
@@ -22,14 +22,14 @@ fn rounded_box_sdf(to_center: vec2<f32>, size: vec2<f32>, radius: f32) -> f32 {
return length(max(abs(to_center) - size + vec2<f32>(radius, radius), vec2<f32>(0.0, 0.0))) - radius;
}
-// Based on the fragment position and the center of the quad, select one of the 4 radi.
+// Based on the fragment position and the center of the quad, select one of the 4 radii.
// Order matches CSS border radius attribute:
-// radi.x = top-left, radi.y = top-right, radi.z = bottom-right, radi.w = bottom-left
-fn select_border_radius(radi: vec4<f32>, position: vec2<f32>, center: vec2<f32>) -> f32 {
- var rx = radi.x;
- var ry = radi.y;
- rx = select(radi.x, radi.y, position.x > center.x);
- ry = select(radi.w, radi.z, position.x > center.x);
+// radii.x = top-left, radii.y = top-right, radii.z = bottom-right, radii.w = bottom-left
+fn select_border_radius(radii: vec4<f32>, position: vec2<f32>, center: vec2<f32>) -> f32 {
+ var rx = radii.x;
+ var ry = radii.y;
+ rx = select(radii.x, radii.y, position.x > center.x);
+ ry = select(radii.w, radii.z, position.x > center.x);
rx = select(rx, ry, position.y > center.y);
return rx;
}