Skip to content

Commit dd47ef4

Browse files
committed
Remove superfluous parentheses.
1 parent 1861b6d commit dd47ef4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

script/RotBlur_M.frag

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ void main() {
3232

3333
float is_zero = step(color.a, 0.0);
3434
color.rgb = mix(color.rgb / max(color.a, 0.0001), vec3(0.0), is_zero);
35-
color.a /= (quality * 2 + 1);
35+
color.a /= quality * 2 + 1;
3636
FragColor = clamp(color, 0.0, 1.0);
3737
}

0 commit comments

Comments
 (0)