Changes between Version 34 and Version 35 of tutorial
- Timestamp:
- Jun 30, 2013, 4:43:09 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
tutorial
v34 v35 523 523 #!c 524 524 #include <stdio.h> 525 #include <GL/glew.h>526 #include <GL/glut.h>527 525 528 526 #define MaxVertices 400000 … … 530 528 #define MaxGroups 100 531 529 532 GLfloatvertex[MaxVertices*3];533 GLuint face[MaxFaces*3];530 float vertex[MaxVertices*3]; 531 unsigned int face[MaxFaces*3]; 534 532 char group_name[MaxGroups][80]; 535 533 int start_face[MaxGroups];