mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-03-22 23:30:14 +00:00
11 lines
241 B
GLSL
11 lines
241 B
GLSL
#version 450
|
|
|
|
layout(set = 0, binding = 0) uniform sampler2D uTileTexture;
|
|
|
|
layout(location = 0) in vec2 TexCoord;
|
|
|
|
layout(location = 0) out vec4 outColor;
|
|
|
|
void main() {
|
|
outColor = texture(uTileTexture, vec2(TexCoord.y, TexCoord.x));
|
|
}
|