a3e89b4e8f
* New Vulkan Renderer Module & Associated Fixups
10 lines
198 B
GLSL
10 lines
198 B
GLSL
#version 450
|
|
|
|
layout(binding = 1) uniform sampler2D tex;
|
|
|
|
layout(location = 0) in vec2 tex_coord;
|
|
layout(location = 0) out vec4 frag_color;
|
|
|
|
void main() {
|
|
frag_color = texture(tex, tex_coord);
|
|
} |