glcanvas/shader/my.frag

8 lines
116 B
GLSL
Raw Normal View History

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