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-e03cc46cb475master
parent
3aa4260646
commit
8eb5398874
|
@ -2457,7 +2457,7 @@ inline GLboolean COpenGLExtensionHandler::extGlIsQuery(GLuint id)
|
||||||
#elif defined(GL_ARB_occlusion_query)
|
#elif defined(GL_ARB_occlusion_query)
|
||||||
return glIsQueryARB(id);
|
return glIsQueryARB(id);
|
||||||
#elif defined(GL_NV_occlusion_query)
|
#elif defined(GL_NV_occlusion_query)
|
||||||
glIsOcclusionQueryNV(id);
|
return glIsOcclusionQueryNV(id);
|
||||||
#else
|
#else
|
||||||
return false;
|
return false;
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue