diff --git a/drape/binding_info.cpp b/drape/binding_info.cpp index 95d5ce5624..48a9bfcdf4 100644 --- a/drape/binding_info.cpp +++ b/drape/binding_info.cpp @@ -19,8 +19,6 @@ uint16_t sizeOfType(glConst type) return sizeof(GLint); else if (type == gl_const::GLFloatType) return sizeof(GLfloat); - else if (type == gl_const::GLDoubleType) - return sizeof(GLdouble); ASSERT(false, ()); return 0; diff --git a/drape/glconstants.cpp b/drape/glconstants.cpp index 5ea90c7788..ae52531df2 100644 --- a/drape/glconstants.cpp +++ b/drape/glconstants.cpp @@ -92,7 +92,6 @@ const glConst GLUnsignedShortType = GL_UNSIGNED_SHORT; const glConst GLIntType = GL_INT; const glConst GLUnsignedIntType = GL_UNSIGNED_INT; const glConst GLFloatType = GL_FLOAT; -const glConst GLDoubleType = GL_DOUBLE; const glConst GLFloatVec2 = GL_FLOAT_VEC2; const glConst GLFloatVec3 = GL_FLOAT_VEC3; diff --git a/drape/glconstants.hpp b/drape/glconstants.hpp index 9ddb141e9d..f0fe3ec559 100644 --- a/drape/glconstants.hpp +++ b/drape/glconstants.hpp @@ -77,7 +77,6 @@ extern const glConst GLUnsignedShortType; extern const glConst GLIntType; extern const glConst GLUnsignedIntType; extern const glConst GLFloatType; -extern const glConst GLDoubleType; extern const glConst GLFloatVec2; extern const glConst GLFloatVec3;