Home | History | Annotate | Download | only in libGLES_CM

Lines Matching refs:LibEGL

89 	egl::Context *context = libEGL->clientGetCurrentContext();
343 return libEGL->eglGetError();
348 return libEGL->eglGetDisplay(display_id);
353 return libEGL->eglInitialize(dpy, major, minor);
358 return libEGL->eglTerminate(dpy);
363 return libEGL->eglQueryString(dpy, name);
368 return libEGL->eglGetConfigs(dpy, configs, config_size, num_config);
373 return libEGL->eglChooseConfig(dpy, attrib_list, configs, config_size, num_config);
378 return libEGL->eglGetConfigAttrib(dpy, config, attribute, value);
383 return libEGL->eglCreateWindowSurface(dpy, config, window, attrib_list);
388 return libEGL->eglCreatePbufferSurface(dpy, config, attrib_list);
393 return libEGL->eglCreatePixmapSurface(dpy, config, pixmap, attrib_list);
398 return libEGL->eglDestroySurface(dpy, surface);
403 return libEGL->eglQuerySurface(dpy, surface, attribute, value);
408 return libEGL->eglBindAPI(api);
413 return libEGL->eglQueryAPI();
418 return libEGL->eglWaitClient();
423 return libEGL->eglReleaseThread();
428 return libEGL->eglCreatePbufferFromClientBuffer(dpy, buftype, buffer, config, attrib_list);
433 return libEGL->eglSurfaceAttrib(dpy, surface, attribute, value);
438 return libEGL->eglBindTexImage(dpy, surface, buffer);
443 return libEGL->eglReleaseTexImage(dpy, surface, buffer);
448 return libEGL->eglSwapInterval(dpy, interval);
453 return libEGL->eglCreateContext(dpy, config, share_context, attrib_list);
458 return libEGL->eglDestroyContext(dpy, ctx);
463 return libEGL->eglMakeCurrent(dpy, draw, read, ctx);
468 return libEGL->eglGetCurrentContext();
473 return libEGL->eglGetCurrentSurface(readdraw);
478 return libEGL->eglGetCurrentDisplay();
483 return libEGL->eglQueryContext(dpy, ctx, attribute, value);
488 return libEGL->eglWaitGL();
493 return libEGL->eglWaitNative(engine);
498 return libEGL->eglSwapBuffers(dpy, surface);
503 return libEGL->eglCopyBuffers(dpy, surface, target);
508 return libEGL->eglCreateImageKHR(dpy, ctx, target, buffer, attrib_list);
513 return libEGL->eglDestroyImageKHR(dpy, image);
518 return libEGL->eglGetProcAddress(procname);
523 return libEGL->eglCreateSyncKHR(dpy, type, attrib_list);
528 return libEGL->eglDestroySyncKHR(dpy, sync);
533 return libEGL->eglClientWaitSyncKHR(dpy, sync, flags, timeout);
538 return libEGL->eglGetSyncAttribKHR(dpy, sync, attribute, value);
1613 LibEGL libEGL;