Welcome to mirror list, hosted at ThFree Co, Russian Federation.

premult.glsl « paintable « sink « src « gtk4 « video - gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f2ab7ec55da83b9bf71c5d6efbf8aac654e5e023 (plain)
1
2
3
4
5
6
7
8
9
10
11
uniform sampler2D u_texture1;

void mainImage(
    out vec4 fragColor,
    in vec2 fragCoord,
    in vec2 resolution,
    in vec2 uv
) {
  fragColor = GskTexture(u_texture1, uv);
  fragColor.rgb = fragColor.rgb * fragColor.a;
}