thebookofshaders/02/hello_world.frag

12 lines
105 B
GLSL
Raw Normal View History

2015-03-15 15:21:47 +00:00
#ifdef GL_ES
precision mediump float;
#endif
void main() {
gl_FragColor = vec4(1.0,0.0,1.0,1.0);
}