kaliber/assets/engine/solid.glsl_fragment

10 lines
107 B
Plaintext
Raw Normal View History

2020-04-13 11:24:53 +00:00
#ifdef GL_ES
precision mediump float;
#endif
uniform vec4 color;
void main() {
gl_FragColor = color;
}