rhythmbullet/RhythmBullet/Content/shaders/mesh.fsh

10 lines
134 B
Plaintext
Raw Normal View History

2018-09-12 06:32:05 +00:00
#ifdef GL_ES
precision mediump float;
#endif
//input from vertex shader
varying vec4 vColor;
void main() {
gl_FragColor = vColor;
}