diff options
author | Vinson Lee <[email protected]> | 2009-10-30 15:02:21 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-10-30 15:30:13 -0600 |
commit | 9c3197ef0abc3bf521358ea0c7af0fc6979c82b3 (patch) | |
tree | c9afd58114f44108e96f0f5a45cd7e03618ab0dd /progs/tests/vao-02.c | |
parent | cb132406ded760a622513cd1ab86bf83bb945671 (diff) |
prog/tests: Fix MSVC build.
Signed-off-by: Brian Paul <[email protected]>
Diffstat (limited to 'progs/tests/vao-02.c')
-rw-r--r-- | progs/tests/vao-02.c | 8 |
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 ); |