You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
231 B

#ifndef NEW_GLSL
#define in varying
#define fragmentColor gl_FragColor
#endif
in lowp vec3 interpolatedColor;
#ifdef NEW_GLSL
out lowp vec4 fragmentColor;
#endif
void main() {
fragmentColor = vec4(interpolatedColor, 1.0);
}