Warning, /plasma/kwin/src/plugins/blur/shaders/vertex_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 uv;
0009 
0010 void main(void)
0011 {
0012     gl_Position = modelViewProjectionMatrix * vec4(position, 0.0, 1.0);
0013     uv = texcoord;
0014 }