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

gpu_shader_3D_image_vert.glsl « shaders « gpu « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 840701e890d4c7880687a40755a5f53e4e7e3c24 (plain)
1
2
3
4
5
6

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