mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-16 15:14:17 +00:00
f05f0377df
- Rename from blit => blend - Use instances - Add clip versions
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);
|
|
}
|