summaryrefslogtreecommitdiff
path: root/shaders/skia/430-2.shader_test
blob: f4639fb5ec1adb25f09ea0f705d4884ab1921da9 (plain)
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
38
[require]
GLSL >= 1.40

[fragment shader]
#version 140

uniform vec4 uColor_Stage0;
uniform vec4 ucircleData_Stage1;
uniform sampler2D uTextureSampler_0_Stage1;
noperspective in vec3 vDashParams_Stage0;
noperspective in vec4 vRectParams_Stage0;
void main() {
    {
        float xShifted = vDashParams_Stage0.x - floor(vDashParams_Stage0.x / vDashParams_Stage0.z) * vDashParams_Stage0.z;
        vec2 fragPosShifted = vec2(xShifted, vDashParams_Stage0.y);
        float alpha = 1.0;
        alpha *= fragPosShifted.x - vRectParams_Stage0.x > -0.5 ? 1.0 : 0.0;
        alpha *= vRectParams_Stage0.z - fragPosShifted.x >= -0.5 ? 1.0 : 0.0;
    }
}

[vertex shader]
#version 140

uniform vec4 sk_RTAdjust;
in vec2 inPosition;
in vec3 inDashParams;
in vec4 inRect;
noperspective out vec3 vDashParams_Stage0;
noperspective out vec4 vRectParams_Stage0;
void main() {
    vDashParams_Stage0 = inDashParams;
    vRectParams_Stage0 = inRect;
    vec2 pos2 = inPosition;
    gl_Position = vec4(pos2.x, pos2.y, 0.0, 1.0);
    gl_Position = vec4(gl_Position.xy * sk_RTAdjust.xz + gl_Position.ww * sk_RTAdjust.yw, 0.0, gl_Position.w);
}