12 lines
240 B
GLSL
12 lines
240 B
GLSL
#version 450
|
|
#extension GL_ARB_separate_shader_objects : enable
|
|
|
|
layout(location = 0) in vec2 vUv;
|
|
|
|
layout(location = 0) out vec4 outColor;
|
|
|
|
layout(binding = 1) uniform sampler2D render;
|
|
|
|
void main() {
|
|
outColor = texture(render, vUv);
|
|
} |