#version 300 es precision mediump float; in vec4 v_color; in vec2 v_texCoords; out vec4 FragColor; uniform sampler2D u_texture; void main () { FragColor = v_color * texture(u_texture, v_texCoords); }