fix(outline): pass the radii in the correct order for the shader
This commit is contained in:
parent
2873d6b27e
commit
e476153086
1 changed files with 2 additions and 2 deletions
|
|
@ -147,10 +147,10 @@ impl CosmicSurface {
|
||||||
|
|
||||||
guard.corners.map(|corners| {
|
guard.corners.map(|corners| {
|
||||||
[
|
[
|
||||||
corners.top_right.min(half_min_dim),
|
|
||||||
corners.bottom_right.min(half_min_dim),
|
corners.bottom_right.min(half_min_dim),
|
||||||
corners.top_left.min(half_min_dim),
|
corners.top_right.min(half_min_dim),
|
||||||
corners.bottom_left.min(half_min_dim),
|
corners.bottom_left.min(half_min_dim),
|
||||||
|
corners.top_left.min(half_min_dim),
|
||||||
]
|
]
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue