File: box.glsl

package info (click to toggle)
papers 49.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 21,044 kB
  • sloc: ansic: 37,728; sh: 197; xml: 127; makefile: 113
file content (37 lines) | stat: -rw-r--r-- 921 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
uniform float progress;
uniform int direction;
uniform sampler2D u_texture1;
uniform sampler2D u_texture2;

vec4 getFromColor (vec2 uv) {
  return GskTexture(u_texture1, uv);
}

vec4 getToColor (vec2 uv) {
  return GskTexture(u_texture2, uv);
}

// License: MIT
// Author: Qiu Wenbo

vec4 transition(vec2 uv) {
  vec2 p=uv.xy/vec2(1.0).xy;
  vec4 a=getFromColor(p);
  vec4 b=getToColor(p);
  float half_progress = progress / 2.0;

  float interpolate = mix(
    1.0 - step(half_progress, p.x) * step(p.x, 1.0 - half_progress) *
        step(half_progress, p.y) * step(p.y, 1.0 - half_progress),
    step(0.5 - half_progress, p.x) * step(p.x, 0.5 + half_progress) *
        step(0.5 - half_progress, p.y) * step(p.y, 0.5 + half_progress),
    float(direction)
  );

  return mix(a, b, interpolate);
}

void mainImage(out vec4 fragColor, in vec2 fragCoord, in vec2 resolution, in vec2 uv)
{
  fragColor = transition(uv);
}