diff options
author | Brian Paul <[email protected]> | 2004-11-26 13:43:17 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2004-11-26 13:43:17 +0000 |
commit | 4fe34f340c15199a7bf209743f677b79cfad240d (patch) | |
tree | 769d95fcbf6666db38e3103af1d6bea3aee97090 /progs | |
parent | 59651a076dfc6ca16e4141907954e8aacfd946df (diff) |
(GLint*) casts in glGetIntegerv calls
Diffstat (limited to 'progs')
-rw-r--r-- | progs/demos/readpix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/progs/demos/readpix.c b/progs/demos/readpix.c index fc322f2e811..b36e3d1e643 100644 --- a/progs/demos/readpix.c +++ b/progs/demos/readpix.c @@ -238,8 +238,8 @@ Init( GLboolean ciMode ) #ifdef GL_OES_read_format if ( glutExtensionSupported( "GL_OES_read_format" ) ) { - glGetIntegerv( GL_IMPLEMENTATION_COLOR_READ_TYPE_OES, & ReadType ); - glGetIntegerv( GL_IMPLEMENTATION_COLOR_READ_FORMAT_OES, & ReadFormat ); + glGetIntegerv(GL_IMPLEMENTATION_COLOR_READ_TYPE_OES, (GLint *) &ReadType); + glGetIntegerv(GL_IMPLEMENTATION_COLOR_READ_FORMAT_OES, (GLint *) &ReadFormat); have_read_format = GL_TRUE; } |