diff --git a/lib/irrlicht/include/EDriverTypes.h b/lib/irrlicht/include/EDriverTypes.h index 1dc9b85c6..c6df53458 100644 --- a/lib/irrlicht/include/EDriverTypes.h +++ b/lib/irrlicht/include/EDriverTypes.h @@ -52,9 +52,6 @@ namespace video primitives. */ EDT_OPENGL, - //! OpenGL-ES 1.x driver, for embedded and mobile systems - EDT_OGLES1, - //! OpenGL-ES 2.x driver, for embedded and mobile systems /** Supports shaders etc. */ EDT_OGLES2, diff --git a/lib/irrlicht/source/Irrlicht/CIrrDeviceAndroid.cpp b/lib/irrlicht/source/Irrlicht/CIrrDeviceAndroid.cpp index c938e39e5..a8fcbda49 100644 --- a/lib/irrlicht/source/Irrlicht/CIrrDeviceAndroid.cpp +++ b/lib/irrlicht/source/Irrlicht/CIrrDeviceAndroid.cpp @@ -18,9 +18,6 @@ namespace irr { namespace video { - IVideoDriver* createOGLES1Driver(const SIrrlichtCreationParameters& params, - video::SExposedVideoData& data, io::IFileSystem* io); - IVideoDriver* createOGLES2Driver(const SIrrlichtCreationParameters& params, video::SExposedVideoData& data, io::IFileSystem* io); } @@ -135,14 +132,6 @@ void CIrrDeviceAndroid::createDriver() // Create the driver. switch(CreationParams.DriverType) { - case video::EDT_OGLES1: - #ifdef _IRR_COMPILE_WITH_OGLES1_ - VideoDriver = video::createOGLES1Driver(CreationParams, ExposedVideoData, FileSystem); - #else - os::Printer::log("No OpenGL ES 1.0 support compiled in.", ELL_ERROR); - #endif - break; - case video::EDT_OGLES2: #ifdef _IRR_COMPILE_WITH_OGLES2_ VideoDriver = video::createOGLES2Driver(CreationParams, ExposedVideoData, FileSystem);