Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gpu_shader_gpencil_fill_vert.glsl « shaders « gpu « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5e469fec42e4ffb22a447ca94c9c6e8cc0c98a97 (plain)
1
2
3
4
5
6
7
8
9
10
11
uniform mat4 ModelViewProjectionMatrix;

in vec3 pos;
in vec2 texCoord;
out vec2 texCoord_interp;

void main(void)
{
  gl_Position = ModelViewProjectionMatrix * vec4(pos, 1.0);
  texCoord_interp = texCoord;
}