LearnOpenGL/Framebuffers.fs

10 lines
156 B
GLSL

#version 460 core
out vec4 FragColor;
in vec2 TexCoords;
uniform sampler2D screenTexure;
void main(){
FragColor = texture(screenTexure, TexCoords);
}