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

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

void main()
{
  normal = normalize(NormalMatrix * nor);
  gl_Position = ModelViewProjectionMatrix * vec4(pos, 1.0);
}