11 lines
158 B
Plaintext
11 lines
158 B
Plaintext
|
#version 440 core
|
||
|
out vec4 FragColor;
|
||
|
|
||
|
in vec2 TexCoords;
|
||
|
|
||
|
uniform sampler2D screenTexture;
|
||
|
|
||
|
|
||
|
void main(){
|
||
|
FragColor = texture(screenTexture, aTexCoords);
|
||
|
}
|