blob: 1c629eb5aac4636a2908d6a42619ff53af630b24 [file] [log] [blame]
#version 460
layout(set = 0, binding = 0) uniform sampler2D uTexture;
layout(location = 0) noperspective in vec2 iUV;
layout(location = 0) out vec4 oColor;
void main() {
oColor = texture(uTexture, iUV);
}