File: ev_pro_55.frag

package info (click to toggle)
pd-extendedview 0.5~repack-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 10,728 kB
  • sloc: makefile: 20; sh: 1
file content (27 lines) | stat: -rw-r--r-- 601 bytes parent folder | download | duplicates (6)
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
// (c)2011-2012 Cyrille Henry & Marian Weger
// part of EXTENDED VIEW TOOLKIT // gpl v3

#extension GL_ARB_texture_rectangle : enable

uniform sampler2DRect MyTex;
uniform float Sl,Sr,St,Sb; // shade size
uniform float set_alpha; // toggle alpha set to 1
varying vec2 pos;

void main (void)
{
    vec4 color = texture2DRect(MyTex, gl_TexCoord[0].st);

    if (set_alpha == 1.) 
        {
        color.a = 1.;
        } 
    else {}

    color.a *=min(1.,pos.x/Sl);
    color.a *=min(1.,(1.-pos.x)/Sr);
    color.a *=min(1.,pos.y/St);
    color.a *=min(1.,(1.-pos.y)/Sb);

    gl_FragColor = color;
}