Lines Matching refs:extensions
165 auto& extensions = GLExtensions::getInstance(); in create() local
166 extensions.initWithEGLStrings(eglVersion, eglExtensions); in create()
171 if (!extensions.hasNoConfigContext()) { in create()
177 if (args.enableProtectedContext && extensions.hasProtectedContent()) { in create()
190 if (!extensions.hasSurfacelessContext()) { in create()
197 extensions.initWithGLStrings(glGetString(GL_VENDOR), glGetString(GL_RENDERER), in create()
201 if (protectedContext != EGL_NO_CONTEXT && !extensions.hasSurfacelessContext()) { in create()
215 ALOGI("vendor : %s", extensions.getVendor()); in create()
216 ALOGI("renderer : %s", extensions.getRenderer()); in create()
217 ALOGI("version : %s", extensions.getVersion()); in create()
218 ALOGI("extensions: %s", extensions.getExtensions()); in create()
545 const GLExtensions& extensions = GLExtensions::getInstance(); in appendBackendSpecificInfoToDump() local
547 StringAppendF(&result, "EGL implementation : %s\n", extensions.getEGLVersion()); in appendBackendSpecificInfoToDump()
548 StringAppendF(&result, "%s\n", extensions.getEGLExtensions()); in appendBackendSpecificInfoToDump()
549 StringAppendF(&result, "GLES: %s, %s, %s\n", extensions.getVendor(), extensions.getRenderer(), in appendBackendSpecificInfoToDump()
550 extensions.getVersion()); in appendBackendSpecificInfoToDump()
551 StringAppendF(&result, "%s\n", extensions.getExtensions()); in appendBackendSpecificInfoToDump()