mirror of
https://github.com/patriciogonzalezvivo/thebookofshaders
synced 2024-11-09 19:10:24 +00:00
17 lines
313 B
GLSL
17 lines
313 B
GLSL
|
// Author @patriciogv - 2015
|
||
|
// http://patriciogonzalezvivo.com
|
||
|
|
||
|
#ifdef GL_ES
|
||
|
precision mediump float;
|
||
|
#endif
|
||
|
|
||
|
#define PROCESSING_COLOR_SHADER
|
||
|
|
||
|
uniform vec2 u_resolution;
|
||
|
uniform vec3 u_mouse;
|
||
|
uniform float u_time;
|
||
|
|
||
|
void main() {
|
||
|
vec2 st = gl_FragCoord.st/u_resolution;
|
||
|
gl_FragColor = vec4(st.x,st.y,0.0,1.0);
|
||
|
}
|