YoggieEngine/BarinkEngine/graphics/shaders/RenderSurfaceVert.shader

11 lines
158 B
Plaintext
Raw Normal View History

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