Searched refs:eglExtensions (Results 1 – 2 of 2) sorted by relevance
216 const char* eglExtensions = eglQueryString(eglGetCurrentDisplay(), EGL_EXTENSIONS); in isEGLImageSupported() local219 return eglExtensions && glExtensions in isEGLImageSupported()220 && strstr(eglExtensions, "EGL_KHR_image_base") in isEGLImageSupported()221 && strstr(eglExtensions, "EGL_KHR_gl_texture_2D_image") in isEGLImageSupported()227 const char* eglExtensions = eglQueryString(eglGetCurrentDisplay(), EGL_EXTENSIONS); in isEGLFenceSyncSupported() local228 return eglExtensions && strstr(eglExtensions, "EGL_KHR_fence_sync"); in isEGLFenceSyncSupported()
1093 static const Extension eglExtensions[] = in eglGetProcAddress() local1098 for (int ext = 0; ext < sizeof(eglExtensions) / sizeof(Extension); ext++) in eglGetProcAddress()1100 if (strcmp(procname, eglExtensions[ext].name) == 0) in eglGetProcAddress()1102 return (__eglMustCastToProperFunctionPointerType)eglExtensions[ext].address; in eglGetProcAddress()