abstreet/widgetry/shaders/fragment_300.glsl

21 lines
391 B
Plaintext
Raw Normal View History

#version 300 es
precision mediump float;
precision mediump sampler2DArray;
// (x offset, y offset, zoom)
uniform vec3 transform;
// (window width, window height, z value)
uniform vec3 window;
2020-10-06 05:49:12 +03:00
// textures grid
uniform sampler2DArray textures;
2020-10-06 05:49:12 +03:00
in vec4 fs_color;
in vec3 fs_texture_coord;
out vec4 out_color;
void main() {
2020-10-06 05:49:12 +03:00
out_color = fs_color * texture(textures, fs_texture_coord);
}