#version 300 es // FRAGMENT SHADER // // Basic fragment shader, just passes along colors, we don't do much // with textures or anything else complex in this project. precision highp float; flat in vec4 vColor; out vec4 color; void main() { color = vColor; }