A simple map viewer

123456789
  1. #version 100
  2. precision mediump float;
  3. varying vec2 v_tex;
  4. uniform sampler2D tex;
  5. void main() {
  6. gl_FragColor = texture2D(tex, v_tex.xy).rgba;
  7. }