mirror of
https://github.com/cyberboy666/r_e_c_u_r.git
synced 2025-12-11 19:00:04 +01:00
10 lines
132 B
GLSL
10 lines
132 B
GLSL
#ifdef GL_ES
|
|
precision mediump float;
|
|
#endif
|
|
|
|
uniform float u_time;
|
|
|
|
void main() {
|
|
gl_FragColor = vec4(sin(u_time),0.0,0.0,1.0);
|
|
}
|