File size: 178 Bytes
ec0c8fa
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
#version 330

uniform sampler2D tex;
uniform sampler2D uv;

in vec2 scr_coord;
out vecN tex_color;

void main() {
    tex_color = vecN(texture(tex, texture(uv, scr_coord).xy));
}