Files
NxtAR-android/assets/shaders/singleDiffuseLight/singleDiffuseLight_frag.glsl

11 lines
160 B
Plaintext
Raw Normal View History

2014-05-06 16:36:46 -04:30
#ifdef GL_ES
precision mediump float;
#endif
2014-05-07 16:42:14 -04:30
// Fragment color received from the vertex shader.
varying vec4 v_color;
2014-05-06 16:36:46 -04:30
void main(){
2014-05-07 16:42:14 -04:30
gl_FragColor = v_color;
2014-05-06 16:36:46 -04:30
}