forked from AuroraMiddleware/gtk
5577fde990
This is what it does, and the name blend is easily confused with blend-mode.
13 lines
217 B
GLSL
13 lines
217 B
GLSL
#version 420 core
|
|
|
|
layout(location = 0) in vec2 inTexCoord;
|
|
|
|
layout(set = 0, binding = 0) uniform sampler2D inTexture;
|
|
|
|
layout(location = 0) out vec4 color;
|
|
|
|
void main()
|
|
{
|
|
color = texture (inTexture, inTexCoord);
|
|
}
|