Commit 8eb53988 authored by cutealien's avatar cutealien

Add missing return for glIsOcclusionQueryNV (thx @ Randajad for reporting).

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@4174 dfc29bdd-3216-0410-991c-e03cc46cb475
parent 3aa42606
......@@ -2457,7 +2457,7 @@ inline GLboolean COpenGLExtensionHandler::extGlIsQuery(GLuint id)
#elif defined(GL_ARB_occlusion_query)
return glIsQueryARB(id);
#elif defined(GL_NV_occlusion_query)
glIsOcclusionQueryNV(id);
return glIsOcclusionQueryNV(id);
#else
return false;
#endif
......
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