12 lines
217 B
GLSL
12 lines
217 B
GLSL
|
#version 460 core
|
||
|
|
||
|
layout(location = 0) in vec2 inUV;
|
||
|
|
||
|
layout(location = 0) out vec4 outColor;
|
||
|
|
||
|
layout(binding = 0) uniform sampler2D offscreenSampler;
|
||
|
|
||
|
void main() {
|
||
|
outColor = texture(offscreenSampler, inUV);
|
||
|
}
|