couch/shaders/screen.frag

12 lines
125 B
GLSL
Raw Normal View History

2021-01-19 16:01:37 -06:00
#version 330 core
in vec2 UV;
out vec4 FragColor;
2021-01-22 15:27:32 -06:00
uniform sampler2D tex;
2021-01-19 16:01:37 -06:00
void main() {
2021-01-22 15:27:32 -06:00
FragColor = texture(tex, UV);
2021-01-19 16:01:37 -06:00
}