flat_texture.fs 149 B

12345678910
  1. #version 110
  2. uniform sampler2D uniform_texture;
  3. varying vec2 tex_coord;
  4. void main()
  5. {
  6. gl_FragColor = texture2D(uniform_texture, tex_coord);
  7. }