Clone of mesa.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

simple.vert 127B

123456789
  1. // Simple vertex shader
  2. // Brian Paul
  3. void main()
  4. {
  5. gl_TexCoord[0] = gl_MultiTexCoord0;
  6. gl_Position = ftransform();
  7. }