glcanvas/shader/my.frag

8 lines
116 B
GLSL
Raw Normal View History

2024-09-17 21:45:26 -04:00
precision mediump float;
uniform float u_clock;
void main() {
2024-09-21 02:15:41 -04:00
gl_FragColor = vec4(.9215, .8588, .698, 1.0);
2024-09-17 21:45:26 -04:00
}