Files
YoggieEngine/BarinkEngine/src/Shaders/RenderSurfaceVert.shader

11 lines
158 B
GLSL

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