Skip to content

Commit

Permalink
Disable rounded scissor for now
Browse files Browse the repository at this point in the history
  • Loading branch information
wtholliday committed Jan 10, 2024
1 parent f12f4b6 commit 94c78e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shader.wgsl
Original file line number Diff line number Diff line change
Expand Up @@ -711,5 +711,5 @@ fn fs_main(
color = apply(paint, in.t);
}

return s * mix(vec4<f32>(color.rgb,0.0), color, 1.0-smoothstep(-fw/2.0,fw/2.0,d) );
return mix(vec4<f32>(color.rgb,0.0), color, 1.0-smoothstep(-fw/2.0,fw/2.0,d) );
}

0 comments on commit 94c78e3

Please sign in to comment.