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

0001 /*
0002  * Vertex shader for handling scaling
0003  *
0004  * SPDX-License-Identifier: GPL-3.0-or-later
0005  */
0006 
0007 uniform mat4 modelViewProjection;
0008 
0009 attribute highp vec4 a_vertexPosition;
0010 
0011 void main()
0012 {
0013     gl_Position = modelViewProjection * a_vertexPosition;
0014 }