10 lines
156 B
Forth
10 lines
156 B
Forth
|
#version 460 core
|
||
|
out vec4 FragColor;
|
||
|
|
||
|
in vec2 TexCoords;
|
||
|
|
||
|
uniform sampler2D screenTexure;
|
||
|
|
||
|
void main(){
|
||
|
FragColor = texture(screenTexure, TexCoords);
|
||
|
}
|