Игра Маджонг | Mahjong game
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

освещение-изображение.vert 471B

12345678910111213141516
  1. varying vec3 position;
  2. varying vec3 normal;
  3. varying vec2 texCoord;
  4. void main()
  5. {
  6. // Translate vertex coordinates from model/object space to screen one.
  7. gl_Position = gl_ModelViewProjectionMatrix * gl_Vertex;
  8. // Pass vertex coordinates and normal into camera/eye space.
  9. position = vec3(gl_ModelViewMatrix * gl_Vertex);
  10. normal = vec3(gl_ModelViewMatrix * vec4(gl_Normal, 0.0));
  11. // Pass texture coordinate.
  12. texCoord = gl_MultiTexCoord0.xy;
  13. }