• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#version 300 es
2
3precision mediump float;
4
5in vec4 v_color;
6in vec2 v_texCoords;
7
8out vec4 FragColor;
9
10uniform sampler2D u_texture;
11
12void main () {
13    FragColor = v_color * texture(u_texture, v_texCoords);
14}