gdxapp4d/demo4d-gdxapp/assets/shader/color.fragment.glsl

10 lines
119 B
Plaintext
Raw Normal View History

2022-01-28 09:39:17 +00:00
#ifdef GL_ES
precision mediump float;
#endif
uniform vec4 u_color;
void main() {
gl_FragColor = vec4(u_color);
}