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

paint_texture_vert.glsl « shaders « modes « draw « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8eae494cc35bfae751dfb96d0c0bcba3a1541b64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

uniform mat4 ModelViewProjectionMatrix;

in vec2 u; /* active uv map */
in vec3 pos;

out vec2 uv_interp;

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

	uv_interp = u;
}