Warning, /plasma/kwin/src/plugins/screentransform/shaders/crossfade_core.vert is written in an unsupported language. File is not indexed.
0001 #version 140
0002
0003 uniform mat4 modelViewProjectionMatrix;
0004
0005 in vec2 position;
0006 in vec2 texcoord;
0007
0008 out vec2 texcoord0;
0009
0010 void main()
0011 {
0012 gl_Position = modelViewProjectionMatrix * vec4(position, 0.0, 1.0);
0013 texcoord0 = texcoord;
0014 }