Skip to content

Commit 674d1e8

Browse files
committedNov 18, 2023
Minor code clean up.
1 parent 0fd3508 commit 674d1e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎09-gaussian-blur/shader.frag

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ uniform sampler2D u_texture_0;
55

66
void main() {
77
vec2 uv = gl_FragCoord.xy / u_resolution;
8-
// uv.x = uv.x * u_resolution.x / u_resolution.y;
8+
uv.x = uv.x * u_resolution.x / u_resolution.y;
99

1010
vec3 color = vec3(0.0);
1111
color = vec3(uv, 0.0);

0 commit comments

Comments
 (0)
Please sign in to comment.