Warning, /graphics/krita/krita/data/shaders/cursor.vert is written in an unsupported language. File is not indexed.

0001 /*
0002  *  SPDX-License-Identifier: GPL-3.0-or-later
0003  */
0004 
0005 uniform mat4 modelViewProjection;
0006 
0007 in vec4 a_vertexPosition;
0008 
0009 void main()
0010 {
0011     gl_Position = modelViewProjection * a_vertexPosition;
0012 }