mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-05 02:11:08 +00:00
17 lines
352 B
GLSL
17 lines
352 B
GLSL
|
#version 420 core
|
||
|
|
||
|
#include "clip.frag.glsl"
|
||
|
|
||
|
layout(location = 0) in vec2 inPos;
|
||
|
layout(location = 1) in vec2 inTexCoord;
|
||
|
layout(location = 2) in vec4 inColor;
|
||
|
|
||
|
layout(set = 0, binding = 0) uniform sampler2D inTexture;
|
||
|
|
||
|
layout(location = 0) out vec4 color;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
color = clip (inPos, vec4(inColor.rgb, texture(inTexture, inTexCoord).a));
|
||
|
}
|