mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-14 20:51:07 +00:00
144f727d5a
We have only one gl renderer now, and it is a bit odd for it not be called gl.
25 lines
557 B
GLSL
25 lines
557 B
GLSL
// VERTEX_SHADER:
|
|
// cross_fade.glsl
|
|
|
|
void main() {
|
|
gl_Position = u_projection * u_modelview * vec4(aPosition, 0.0, 1.0);
|
|
|
|
vUv = vec2(aUv.x, aUv.y);
|
|
}
|
|
|
|
// FRAGMENT_SHADER:
|
|
// cross_fade.glsl
|
|
|
|
uniform float u_progress;
|
|
uniform sampler2D u_source2;
|
|
|
|
void main() {
|
|
vec4 source1 = GskTexture(u_source, vUv); // start child
|
|
vec4 source2 = GskTexture(u_source2, vUv); // end child
|
|
|
|
float p_start = (1.0 - u_progress) * u_alpha;
|
|
float p_end = u_progress * u_alpha;
|
|
vec4 color = (p_start * source1) + (p_end * source2);
|
|
gskSetOutputColor(color);
|
|
}
|