mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-27 06:00:22 +00:00
2d89dfea29
We need more modern features soon.
19 lines
439 B
GLSL
19 lines
439 B
GLSL
#version 450
|
|
|
|
#include "common.frag.glsl"
|
|
#include "clip.frag.glsl"
|
|
#include "rect.frag.glsl"
|
|
|
|
layout(location = 0) in vec2 inPos;
|
|
layout(location = 1) in Rect inRect;
|
|
layout(location = 2) in vec2 inTexCoord;
|
|
layout(location = 3) flat in uvec2 inTexId;
|
|
|
|
layout(location = 0) out vec4 color;
|
|
|
|
void main()
|
|
{
|
|
float alpha = rect_coverage (inRect, inPos);
|
|
color = clip_scaled (inPos, texture (get_sampler (inTexId), inTexCoord) * alpha);
|
|
}
|