11 lines
237 B
GLSL
11 lines
237 B
GLSL
#version 460
|
|
|
|
layout(location = 0) in vec2 vertTexCoords;
|
|
layout(location = 0) out vec4 fragColor;
|
|
|
|
layout(set = 2, binding = 0) uniform sampler2D textureSampler;
|
|
|
|
void main() {
|
|
fragColor = texture(textureSampler, vertTexCoords);
|
|
}
|
|
|