Last active
June 5, 2022 06:30
-
-
Save rutvik110/ae75fe5eb27a2eefb224573618c22f7f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifdef GL_ES | |
precision mediump float; | |
#endif | |
uniform vec2 u_resolution; | |
void main() { | |
vec2 uv = gl_FragCoord.xy/u_resolution.xy; | |
gl_FragColor = vec4(uv.x,uv.y,1.0,1.0); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment