Commit 366c0e48 authored by cutealien's avatar cutealien

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
parent a6602ef6
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment