Warning, /plasma/kwin/src/plugins/startupfeedback/shaders/blinking-startup_core.frag is written in an unsupported language. File is not indexed.
0001 #version 140
0002 uniform sampler2D sampler;
0003 uniform vec4 geometryColor;
0004
0005 in vec2 texcoord0;
0006
0007 out vec4 fragColor;
0008
0009 void main()
0010 {
0011 vec4 tex = texture(sampler, texcoord0);
0012 if (tex.a != 1.0) {
0013 tex = geometryColor;
0014 }
0015 fragColor = tex;
0016 }