procedural-3d-engine/data/shaders/conservativeraster/fullscreen.frag
2018-03-03 17:32:28 +01:00

11 lines
No EOL
212 B
GLSL

#version 450
layout (binding = 1) uniform sampler2D samplerColor;
layout (location = 0) in vec2 inUV;
layout (location = 0) out vec4 outFragColor;
void main()
{
outFragColor = texture(samplerColor, inUV);
}