summaryrefslogtreecommitdiff
path: root/progs/tests
diff options
context:
space:
mode:
authorVinson Lee <vlee@vmware.com>2009-10-30 15:02:21 -0600
committerVinson Lee <vlee@vmware.com>2009-12-03 15:53:13 -0800
commit005242f1664afdd6f4b832863d569e9e3c583454 (patch)
treeb52d820c19a1b76520c74a143f01c4f300714f34 /progs/tests
parentd3208678c2ea0e50be7b8eb68106f7650b37dfc6 (diff)
prog/tests: Fix MSVC build.
Signed-off-by: Brian Paul <brianp@vmware.com> (cherry picked from commit 9c3197ef0abc3bf521358ea0c7af0fc6979c82b3)
Diffstat (limited to 'progs/tests')
-rw-r--r--progs/tests/vao-02.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/progs/tests/vao-02.c b/progs/tests/vao-02.c
index 7764ed51061..9f7f5c27792 100644
--- a/progs/tests/vao-02.c
+++ b/progs/tests/vao-02.c
@@ -125,10 +125,10 @@ static void Init( void )
exit(2);
}
- bind_vertex_array = glutGetProcAddress( "glBindVertexArrayAPPLE" );
- gen_vertex_arrays = glutGetProcAddress( "glGenVertexArraysAPPLE" );
- delete_vertex_arrays = glutGetProcAddress( "glDeleteVertexArraysAPPLE" );
- is_vertex_array = glutGetProcAddress( "glIsVertexArrayAPPLE" );
+ bind_vertex_array = (PFNGLBINDVERTEXARRAYAPPLEPROC) glutGetProcAddress( "glBindVertexArrayAPPLE" );
+ gen_vertex_arrays = (PFNGLGENVERTEXARRAYSAPPLEPROC) glutGetProcAddress( "glGenVertexArraysAPPLE" );
+ delete_vertex_arrays = (PFNGLDELETEVERTEXARRAYSAPPLEPROC) glutGetProcAddress( "glDeleteVertexArraysAPPLE" );
+ is_vertex_array = (PFNGLISVERTEXARRAYAPPLEPROC) glutGetProcAddress( "glIsVertexArrayAPPLE" );
(*gen_vertex_arrays)( 1, & obj );