1
1
Fork 0
mirror of https://git.sr.ht/~martijnbraam/megapixels synced 2023-12-14 05:32:55 +01:00
megapixels/data/solid.frag
2021-04-26 18:09:04 +10:00

10 lines
106 B
GLSL

#ifdef GL_ES
precision mediump float;
#endif
uniform vec4 color;
void main() {
gl_FragColor = color;
}