10 lines
119 B
Text
10 lines
119 B
Text
|
out vec4 FragColor;
|
||
|
|
||
|
in vec2 tex_coord;
|
||
|
|
||
|
uniform sampler2D tex;
|
||
|
|
||
|
void main() {
|
||
|
FragColor = texture(tex, tex_coord);
|
||
|
}
|