2 * (C) Copyright IBM Corporation 2006
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * on the rights to use, copy, modify, merge, publish, distribute, sub
9 * license, and/or sell copies of the Software, and to permit persons to whom
10 * the Software is furnished to do so, subject to the following conditions:
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
19 * IBM AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
28 * Simple test of APPLE_vertex_array_object functionality. This test creates
29 * a VAO, pushed it (via \c glPushClientAttrib), modifies the VAO, then pops
30 * it (via \c glPopClientAttrib). After popping, the state of the VAO is
33 * According to the APPLE_vertex_array_object spec, the contents of the VAO
34 * should be restored to the values that they had when pushed.
36 * \author Ian Romanick <idr@us.ibm.com>
44 #include <GLUT/glut.h>
46 typedef void (* PFNGLBINDVERTEXARRAYAPPLEPROC
) (GLuint array
);
47 typedef void (* PFNGLDELETEVERTEXARRAYSAPPLEPROC
) (GLsizei n
, const GLuint
*arrays
);
48 typedef void (* PFNGLGENVERTEXARRAYSAPPLEPROC
) (GLsizei n
, GLuint
*arrays
);
49 typedef GLboolean (* PFNGLISVERTEXARRAYAPPLEPROC
) (GLuint array
);
56 static PFNGLBINDVERTEXARRAYAPPLEPROC bind_vertex_array
= NULL
;
57 static PFNGLGENVERTEXARRAYSAPPLEPROC gen_vertex_arrays
= NULL
;
58 static PFNGLDELETEVERTEXARRAYSAPPLEPROC delete_vertex_arrays
= NULL
;
59 static PFNGLISVERTEXARRAYAPPLEPROC is_vertex_array
= NULL
;
61 static int Width
= 400;
62 static int Height
= 200;
63 static const GLfloat Near
= 5.0, Far
= 25.0;
66 static void Display( void )
71 static void Idle( void )
76 static void Visible( int vis
)
78 if ( vis
== GLUT_VISIBLE
) {
85 static void Reshape( int width
, int height
)
87 GLfloat ar
= (float) width
/ (float) height
;
90 glViewport( 0, 0, width
, height
);
91 glMatrixMode( GL_PROJECTION
);
93 glFrustum( -ar
, ar
, -1.0, 1.0, Near
, Far
);
97 static void Key( unsigned char key
, int x
, int y
)
110 static void Init( void )
112 const char * const ver_string
= (const char * const)
113 glGetString( GL_VERSION
);
119 printf("GL_RENDERER = %s\n", (char *) glGetString(GL_RENDERER
));
120 printf("GL_VERSION = %s\n\n", ver_string
);
122 if ( !glutExtensionSupported("GL_APPLE_vertex_array_object") ) {
123 printf("Sorry, this program requires GL_APPLE_vertex_array_object\n");
127 bind_vertex_array
= (PFNGLBINDVERTEXARRAYAPPLEPROC
) glutGetProcAddress( "glBindVertexArrayAPPLE" );
128 gen_vertex_arrays
= (PFNGLGENVERTEXARRAYSAPPLEPROC
) glutGetProcAddress( "glGenVertexArraysAPPLE" );
129 delete_vertex_arrays
= (PFNGLDELETEVERTEXARRAYSAPPLEPROC
) glutGetProcAddress( "glDeleteVertexArraysAPPLE" );
130 is_vertex_array
= (PFNGLISVERTEXARRAYAPPLEPROC
) glutGetProcAddress( "glIsVertexArrayAPPLE" );
133 (*gen_vertex_arrays
)( 1, & obj
);
134 (*bind_vertex_array
)( obj
);
135 glVertexPointer( 4, GL_FLOAT
, sizeof(GLfloat
) * 4, (void *) 0xDEADBEEF);
136 glEnableClientState( GL_VERTEX_ARRAY
);
138 glPushClientAttrib( GL_CLIENT_VERTEX_ARRAY_BIT
);
140 glVertexPointer( 4, GL_FLOAT
, sizeof(GLfloat
) * 4, (void *) 0xBADDC0DE);
141 glDisableClientState( GL_VERTEX_ARRAY
);
145 if ( ! glIsEnabled( GL_VERTEX_ARRAY
) ) {
146 printf( "Array state is incorrectly disabled.\n" );
150 glGetPointerv( GL_VERTEX_ARRAY_POINTER
, & ptr
);
151 if ( ptr
!= (void *) 0xDEADBEEF ) {
152 printf( "Array pointer is incorrectly set to 0x%p.\n", ptr
);
163 int main( int argc
, char *argv
[] )
165 glutInit( &argc
, argv
);
166 glutInitWindowPosition( 0, 0 );
167 glutInitWindowSize( Width
, Height
);
168 glutInitDisplayMode( GLUT_RGB
);
169 glutCreateWindow( "GL_APPLE_vertex_array_object demo" );
171 glutReshapeFunc( Reshape
);
172 glutKeyboardFunc( Key
);
173 glutDisplayFunc( Display
);
174 glutVisibilityFunc( Visible
);