glsl_bad_legacy.vert 229 B

123456789101112
  1. #version 120
  2. // Uniform inputs
  3. uniform mat4 p3d_ModelViewProjectionMatrix;
  4. // Vertex inputs
  5. attribute vec4 p3d_Vertex;
  6. void main() {
  7. gl_Position = p3d_ModelViewProjectionMatrix * p3d_Vertex;
  8. does_not_exist = p3d_Vertex;
  9. }