We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ca76a7 commit a574797Copy full SHA for a574797
1 file changed
common/src/main/resources/assets/lambda/shaders/fragment/renderer/rect.frag
@@ -12,7 +12,7 @@ out vec4 color;
12
void main() {
13
vec2 halfSize = v_Size * 0.5;
14
15
- float radius = v_RoundRadius;
+ float radius = max(v_RoundRadius, SMOOTHING);
16
17
vec2 smoothVec = vec2(SMOOTHING);
18
vec2 coord = mix(-smoothVec, v_Size + smoothVec, v_TexCoord);
0 commit comments