thebookofshaders/02/hello_world.frag
2017-08-23 11:34:44 +02:00

8 lines
101 B
GLSL

#ifdef GL_ES
precision mediump float;
#endif
void main() {
gl_FragColor = vec4(1.0,0.0,1.0,1.0);
}