#version 330 uniform sampler2D tex; in vec2 tex_coord_int; out vec4 fragColor; void main(){ fragColor = texture(tex, tex_coord_int); }