11 lines
147 B
GLSL
11 lines
147 B
GLSL
#version 330
|
|
|
|
uniform sampler2D tex;
|
|
|
|
in vec2 fragPosScreen;
|
|
out vec4 outputColor;
|
|
|
|
void main() {
|
|
outputColor = texture(tex, fragPosScreen);
|
|
}
|