Home | History | Annotate | Download | only in EGL

Lines Matching full:egl

27 #include <EGL/egl.h>
40 * EGL drivers are called
42 * /system/lib/egl/lib{[EGL|GLESv1_CM|GLESv2] | GLES}_$TAG.so
70 case EGL:
97 FILE* cfg = fopen("/system/lib/egl/egl.cfg", "r");
100 LOGD("egl.cfg not found, using default config");
142 const char* const format = "/system/lib/egl/lib%s_%s.so";
147 dso = load_driver(path, cnx, EGL | GLESv1_CM | GLESv2);
151 // Always load EGL first
152 snprintf(path, PATH_MAX, format, "EGL", tag);
153 dso = load_driver(path, cnx, EGL);
242 if (mask & EGL) {
248 egl_t* egl = &cnx->egl;
250 (__eglMustCastToProperFunctionPointerType*)egl;