diff --git a/include/IrrlichtDevice.h b/include/IrrlichtDevice.h index ded21568..f8ca14a6 100644 --- a/include/IrrlichtDevice.h +++ b/include/IrrlichtDevice.h @@ -292,6 +292,18 @@ namespace irr return true; #else return false; +#endif + case video::EDT_OGLES1: +#ifdef _IRR_COMPILE_WITH_OGLES1_ + return true; +#else + return false; +#endif + case video::EDT_OGLES2: +#ifdef _IRR_COMPILE_WITH_OGLES2_ + return true; +#else + return false; #endif default: return false;