diff --git a/src/main/cpp/gl/getter.cpp b/src/main/cpp/gl/getter.cpp index 574002e..9dc36b5 100644 --- a/src/main/cpp/gl/getter.cpp +++ b/src/main/cpp/gl/getter.cpp @@ -251,7 +251,7 @@ const GLubyte * glGetString( GLenum name ) { if (hardware->es_version < 310) return (const GLubyte *) "4.00 MobileGlues with glslang and SPIRV-Cross"; else - return (const GLubyte *) "4.50 MobileGlues with glslang and SPIRV-Cross"; + return (const GLubyte *) "4.60 MobileGlues with glslang and SPIRV-Cross"; case GL_EXTENSIONS: return (const GLubyte *) GetExtensionsList().c_str(); default: @@ -289,7 +289,7 @@ const GLubyte * glGetStringi(GLenum name, GLuint index) { delimiter = " ."; break; case GL_SHADING_LANGUAGE_VERSION: - str = (const GLubyte*)"4.50 MobileGlues with glslang and SPIRV-Cross"; + str = (const GLubyte*)"4.60 MobileGlues with glslang and SPIRV-Cross"; break; case GL_EXTENSIONS: str = glGetString(GL_EXTENSIONS);