diff options
author | Vinson Lee <[email protected]> | 2009-10-30 09:39:51 -0600 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2009-12-03 15:50:36 -0800 |
commit | d3208678c2ea0e50be7b8eb68106f7650b37dfc6 (patch) | |
tree | 0d406cc7b95384d703465b4b88aa71b2f45f9422 /progs | |
parent | 97cbf4943a5926dc1bbec213ff8c919ece66555e (diff) |
progs/tests: fix MSVC build.
Signed-off-by: Brian Paul <[email protected]>
(cherry picked from commit a8ed066858f12290239ddc9165b7c0734ccc0247)
Diffstat (limited to 'progs')
-rw-r--r-- | progs/tests/vao-01.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/progs/tests/vao-01.c b/progs/tests/vao-01.c index 117fae8bd9e..e4a89cb19db 100644 --- a/progs/tests/vao-01.c +++ b/progs/tests/vao-01.c @@ -124,10 +124,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 ); |