mirror of
https://bitbucket.org/CPMADevs/cnq3
synced 2024-11-10 06:31:48 +00:00
fixed incorrect symbol usage for the Linux build
This commit is contained in:
parent
59f658c791
commit
b8b064fc53
1 changed files with 2 additions and 2 deletions
|
@ -431,7 +431,7 @@ static const char* GL2_GetFBOStatusString( GLenum status )
|
|||
|
||||
static qbool GL2_FBO_CreateSS( FrameBuffer& fb, qbool depthStencil )
|
||||
{
|
||||
while ( glGetError() != GL_NO_ERROR ) {} // clear the error queue
|
||||
while ( qglGetError() != GL_NO_ERROR ) {} // clear the error queue
|
||||
|
||||
if ( depthStencil )
|
||||
{
|
||||
|
@ -472,7 +472,7 @@ static qbool GL2_FBO_CreateSS( FrameBuffer& fb, qbool depthStencil )
|
|||
|
||||
static qbool GL2_FBO_CreateMS( FrameBuffer& fb )
|
||||
{
|
||||
while ( glGetError() != GL_NO_ERROR ) {} // clear the error queue
|
||||
while ( qglGetError() != GL_NO_ERROR ) {} // clear the error queue
|
||||
|
||||
GL(qglGenFramebuffers( 1, &fb.fbo ));
|
||||
GL(qglBindFramebuffer( GL_FRAMEBUFFER, fb.fbo ));
|
||||
|
|
Loading…
Reference in a new issue