Fix another missing return in COpenGLExtensionHandler::extGlIsQuery. Found again by Randajad.

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@4178 dfc29bdd-3216-0410-991c-e03cc46cb475
master
cutealien 2012-06-05 10:44:53 +00:00
parent a6602ef67d
commit 366c0e48b5
1 changed files with 1 additions and 0 deletions

View File

@ -2454,6 +2454,7 @@ inline GLboolean COpenGLExtensionHandler::extGlIsQuery(GLuint id)
return pGlIsQueryARB(id);
else if (pGlIsOcclusionQueryNV)
return pGlIsOcclusionQueryNV(id);
return false;
#elif defined(GL_ARB_occlusion_query)
return glIsQueryARB(id);
#elif defined(GL_NV_occlusion_query)