gtk/gsk/vulkan/resources/texture.frag

19 lines
439 B
GLSL
Raw Normal View History

#version 450
#include "common.frag.glsl"
#include "clip.frag.glsl"
2023-05-15 00:25:41 +00:00
#include "rect.frag.glsl"
layout(location = 0) in vec2 inPos;
2023-05-15 00:25:41 +00:00
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()
{
2023-05-15 00:25:41 +00:00
float alpha = rect_coverage (inRect, inPos);
color = clip_scaled (inPos, texture (get_sampler (inTexId), inTexCoord) * alpha);
}