2 * Copyright (c) 1993-1997, Silicon Graphics, Inc.
4 * Permission to use, copy, modify, and distribute this software for
5 * any purpose and without fee is hereby granted, provided that the above
6 * copyright notice appear in all copies and that both the copyright notice
7 * and this permission notice appear in supporting documentation, and that
8 * the name of Silicon Graphics, Inc. not be used in advertising
9 * or publicity pertaining to distribution of the software without specific,
10 * written prior permission.
12 * THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU "AS-IS"
13 * AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE,
14 * INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR
15 * FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICON
16 * GRAPHICS, INC. BE LIABLE TO YOU OR ANYONE ELSE FOR ANY DIRECT,
17 * SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY
18 * KIND, OR ANY DAMAGES WHATSOEVER, INCLUDING WITHOUT LIMITATION,
19 * LOSS OF PROFIT, LOSS OF USE, SAVINGS OR REVENUE, OR THE CLAIMS OF
20 * THIRD PARTIES, WHETHER OR NOT SILICON GRAPHICS, INC. HAS BEEN
21 * ADVISED OF THE POSSIBILITY OF SUCH LOSS, HOWEVER CAUSED AND ON
22 * ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE
23 * POSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE.
25 * US Government Users Restricted Rights
26 * Use, duplication, or disclosure by the Government is subject to
27 * restrictions set forth in FAR 52.227.19(c)(2) or subparagraph
28 * (c)(1)(ii) of the Rights in Technical Data and Computer Software
29 * clause at DFARS 252.227-7013 and/or in similar or successor
30 * clauses in the FAR or the DOD or NASA FAR Supplement.
31 * Unpublished-- rights reserved under the copyright laws of the
32 * United States. Contractor/manufacturer is Silicon Graphics,
33 * Inc., 2011 N. Shoreline Blvd., Mountain View, CA 94039-7311.
35 * OpenGL(R) is a registered trademark of Silicon Graphics, Inc.
40 * This program demonstrates vertex arrays.
51 #define ARRAYELEMENT 2
52 #define DRAWELEMENTS 3
54 int setupMethod
= POINTER
;
55 int derefMethod
= DRAWARRAY
;
57 void setupPointers(void)
59 static GLint vertices
[] = {25, 25,
65 static GLfloat colors
[] = {1.0, 0.2, 0.2,
72 glEnableClientState (GL_VERTEX_ARRAY
);
73 glEnableClientState (GL_COLOR_ARRAY
);
75 glVertexPointer (2, GL_INT
, 0, vertices
);
76 glColorPointer (3, GL_FLOAT
, 0, colors
);
79 void setupInterleave(void)
81 static GLfloat intertwined
[] =
82 {1.0, 0.2, 1.0, 100.0, 100.0, 0.0,
83 1.0, 0.2, 0.2, 0.0, 200.0, 0.0,
84 1.0, 1.0, 0.2, 100.0, 300.0, 0.0,
85 0.2, 1.0, 0.2, 200.0, 300.0, 0.0,
86 0.2, 1.0, 1.0, 300.0, 200.0, 0.0,
87 0.2, 0.2, 1.0, 200.0, 100.0, 0.0};
89 glInterleavedArrays (GL_C3F_V3F
, 0, intertwined
);
94 glClearColor (0.0, 0.0, 0.0, 0.0);
95 glShadeModel (GL_SMOOTH
);
101 glClear (GL_COLOR_BUFFER_BIT
);
103 if (derefMethod
== DRAWARRAY
)
104 glDrawArrays (GL_TRIANGLES
, 0, 6);
105 else if (derefMethod
== ARRAYELEMENT
) {
106 glBegin (GL_TRIANGLES
);
112 else if (derefMethod
== DRAWELEMENTS
) {
113 GLuint indices
[4] = {0, 1, 3, 4};
115 glDrawElements (GL_POLYGON
, 4, GL_UNSIGNED_INT
, indices
);
120 void reshape (int w
, int h
)
122 glViewport (0, 0, (GLsizei
) w
, (GLsizei
) h
);
123 glMatrixMode (GL_PROJECTION
);
125 gluOrtho2D (0.0, (GLdouble
) w
, 0.0, (GLdouble
) h
);
129 void mouse (int button
, int state
, int x
, int y
)
132 case GLUT_LEFT_BUTTON
:
133 if (state
== GLUT_DOWN
) {
134 if (setupMethod
== POINTER
) {
135 setupMethod
= INTERLEAVED
;
138 else if (setupMethod
== INTERLEAVED
) {
139 setupMethod
= POINTER
;
145 case GLUT_MIDDLE_BUTTON
:
146 case GLUT_RIGHT_BUTTON
:
147 if (state
== GLUT_DOWN
) {
148 if (derefMethod
== DRAWARRAY
)
149 derefMethod
= ARRAYELEMENT
;
150 else if (derefMethod
== ARRAYELEMENT
)
151 derefMethod
= DRAWELEMENTS
;
152 else if (derefMethod
== DRAWELEMENTS
)
153 derefMethod
= DRAWARRAY
;
163 void keyboard(unsigned char key
, int x
, int y
)
172 int main(int argc
, char** argv
)
174 glutInit(&argc
, argv
);
175 glutInitDisplayMode (GLUT_SINGLE
| GLUT_RGB
);
176 glutInitWindowSize (350, 350);
177 glutInitWindowPosition (100, 100);
178 glutCreateWindow (argv
[0]);
180 glutDisplayFunc(display
);
181 glutReshapeFunc(reshape
);
182 glutMouseFunc(mouse
);
183 glutKeyboardFunc (keyboard
);
188 int main(int argc
, char** argv
)
190 fprintf (stderr
, "This program demonstrates a feature which is not in OpenGL Version 1.0.\n");
191 fprintf (stderr
, "If your implementation of OpenGL Version 1.0 has the right extensions,\n");
192 fprintf (stderr
, "you may be able to modify this program to make it run.\n");