• Home
  • Raw
  • Download

Lines Matching refs:eglw

7 eglw::EGLBoolean CallLogWrapper::eglBindAPI (eglw::EGLenum api)
11 eglw::EGLBoolean returnValue = m_egl.bindAPI(api);
17 eglw::EGLBoolean CallLogWrapper::eglBindTexImage (eglw::EGLDisplay dpy, eglw::EGLSurface surface, e…
21 eglw::EGLBoolean returnValue = m_egl.bindTexImage(dpy, surface, buffer);
27 eglw::EGLBoolean CallLogWrapper::eglChooseConfig (eglw::EGLDisplay dpy, const eglw::EGLint *attrib_…
31eglw::EGLBoolean returnValue = m_egl.chooseConfig(dpy, attrib_list, configs, config_size, num_conf…
42 eglw::EGLint CallLogWrapper::eglClientWaitSync (eglw::EGLDisplay dpy, eglw::EGLSync sync, eglw::EGL…
46 eglw::EGLint returnValue = m_egl.clientWaitSync(dpy, sync, flags, timeout);
52 eglw::EGLint CallLogWrapper::eglClientWaitSyncKHR (eglw::EGLDisplay dpy, eglw::EGLSyncKHR sync, egl…
56 eglw::EGLint returnValue = m_egl.clientWaitSyncKHR(dpy, sync, flags, timeout);
62 eglw::EGLBoolean CallLogWrapper::eglCopyBuffers (eglw::EGLDisplay dpy, eglw::EGLSurface surface, eg…
66 eglw::EGLBoolean returnValue = m_egl.copyBuffers(dpy, surface, target);
72 eglw::EGLContext CallLogWrapper::eglCreateContext (eglw::EGLDisplay dpy, eglw::EGLConfig config, eg…
76 eglw::EGLContext returnValue = m_egl.createContext(dpy, config, share_context, attrib_list);
82 eglw::EGLImage CallLogWrapper::eglCreateImage (eglw::EGLDisplay dpy, eglw::EGLContext ctx, eglw::EG…
86 eglw::EGLImage returnValue = m_egl.createImage(dpy, ctx, target, buffer, attrib_list);
92 eglw::EGLImageKHR CallLogWrapper::eglCreateImageKHR (eglw::EGLDisplay dpy, eglw::EGLContext ctx, eg…
96 eglw::EGLImageKHR returnValue = m_egl.createImageKHR(dpy, ctx, target, buffer, attrib_list);
102 eglw::EGLSurface CallLogWrapper::eglCreatePbufferFromClientBuffer (eglw::EGLDisplay dpy, eglw::EGLe…
106eglw::EGLSurface returnValue = m_egl.createPbufferFromClientBuffer(dpy, buftype, buffer, config, a…
112 eglw::EGLSurface CallLogWrapper::eglCreatePbufferSurface (eglw::EGLDisplay dpy, eglw::EGLConfig con…
116 eglw::EGLSurface returnValue = m_egl.createPbufferSurface(dpy, config, attrib_list);
122 eglw::EGLSurface CallLogWrapper::eglCreatePixmapSurface (eglw::EGLDisplay dpy, eglw::EGLConfig conf…
126 eglw::EGLSurface returnValue = m_egl.createPixmapSurface(dpy, config, pixmap, attrib_list);
132 eglw::EGLSurface CallLogWrapper::eglCreatePlatformPixmapSurface (eglw::EGLDisplay dpy, eglw::EGLCon…
136eglw::EGLSurface returnValue = m_egl.createPlatformPixmapSurface(dpy, config, native_pixmap, attri…
142 eglw::EGLSurface CallLogWrapper::eglCreatePlatformPixmapSurfaceEXT (eglw::EGLDisplay dpy, eglw::EGL…
146eglw::EGLSurface returnValue = m_egl.createPlatformPixmapSurfaceEXT(dpy, config, native_pixmap, at…
152 eglw::EGLSurface CallLogWrapper::eglCreatePlatformWindowSurface (eglw::EGLDisplay dpy, eglw::EGLCon…
156eglw::EGLSurface returnValue = m_egl.createPlatformWindowSurface(dpy, config, native_window, attri…
162 eglw::EGLSurface CallLogWrapper::eglCreatePlatformWindowSurfaceEXT (eglw::EGLDisplay dpy, eglw::EGL…
166eglw::EGLSurface returnValue = m_egl.createPlatformWindowSurfaceEXT(dpy, config, native_window, at…
172 eglw::EGLSync CallLogWrapper::eglCreateSync (eglw::EGLDisplay dpy, eglw::EGLenum type, const eglw::…
176 eglw::EGLSync returnValue = m_egl.createSync(dpy, type, attrib_list);
182 eglw::EGLSyncKHR CallLogWrapper::eglCreateSyncKHR (eglw::EGLDisplay dpy, eglw::EGLenum type, const
186 eglw::EGLSyncKHR returnValue = m_egl.createSyncKHR(dpy, type, attrib_list);
192 eglw::EGLSurface CallLogWrapper::eglCreateWindowSurface (eglw::EGLDisplay dpy, eglw::EGLConfig conf…
196 eglw::EGLSurface returnValue = m_egl.createWindowSurface(dpy, config, win, attrib_list);
202 eglw::EGLBoolean CallLogWrapper::eglDestroyContext (eglw::EGLDisplay dpy, eglw::EGLContext ctx)
206 eglw::EGLBoolean returnValue = m_egl.destroyContext(dpy, ctx);
212 eglw::EGLBoolean CallLogWrapper::eglDestroyImage (eglw::EGLDisplay dpy, eglw::EGLImage image)
216 eglw::EGLBoolean returnValue = m_egl.destroyImage(dpy, image);
222 eglw::EGLBoolean CallLogWrapper::eglDestroyImageKHR (eglw::EGLDisplay dpy, eglw::EGLImageKHR image)
226 eglw::EGLBoolean returnValue = m_egl.destroyImageKHR(dpy, image);
232 eglw::EGLBoolean CallLogWrapper::eglDestroySurface (eglw::EGLDisplay dpy, eglw::EGLSurface surface)
236 eglw::EGLBoolean returnValue = m_egl.destroySurface(dpy, surface);
242 eglw::EGLBoolean CallLogWrapper::eglDestroySync (eglw::EGLDisplay dpy, eglw::EGLSync sync)
246 eglw::EGLBoolean returnValue = m_egl.destroySync(dpy, sync);
252 eglw::EGLBoolean CallLogWrapper::eglDestroySyncKHR (eglw::EGLDisplay dpy, eglw::EGLSyncKHR sync)
256 eglw::EGLBoolean returnValue = m_egl.destroySyncKHR(dpy, sync);
262 eglw::EGLBoolean CallLogWrapper::eglGetConfigAttrib (eglw::EGLDisplay dpy, eglw::EGLConfig config,
266 eglw::EGLBoolean returnValue = m_egl.getConfigAttrib(dpy, config, attribute, value);
276 eglw::EGLBoolean CallLogWrapper::eglGetConfigs (eglw::EGLDisplay dpy, eglw::EGLConfig *configs, egl…
280 eglw::EGLBoolean returnValue = m_egl.getConfigs(dpy, configs, config_size, num_config);
286 eglw::EGLContext CallLogWrapper::eglGetCurrentContext ()
290 eglw::EGLContext returnValue = m_egl.getCurrentContext();
296 eglw::EGLDisplay CallLogWrapper::eglGetCurrentDisplay ()
300 eglw::EGLDisplay returnValue = m_egl.getCurrentDisplay();
306 eglw::EGLSurface CallLogWrapper::eglGetCurrentSurface (eglw::EGLint readdraw)
310 eglw::EGLSurface returnValue = m_egl.getCurrentSurface(readdraw);
316 eglw::EGLDisplay CallLogWrapper::eglGetDisplay (eglw::EGLNativeDisplayType display_id)
320 eglw::EGLDisplay returnValue = m_egl.getDisplay(display_id);
326 eglw::EGLint CallLogWrapper::eglGetError ()
330 eglw::EGLint returnValue = m_egl.getError();
336 eglw::EGLDisplay CallLogWrapper::eglGetPlatformDisplay (eglw::EGLenum platform, void *native_displa…
340 eglw::EGLDisplay returnValue = m_egl.getPlatformDisplay(platform, native_display, attrib_list);
346 eglw::EGLDisplay CallLogWrapper::eglGetPlatformDisplayEXT (eglw::EGLenum platform, void *native_dis…
350 eglw::EGLDisplay returnValue = m_egl.getPlatformDisplayEXT(platform, native_display, attrib_list);
356 eglw::__eglMustCastToProperFunctionPointerType CallLogWrapper::eglGetProcAddress (const char *procn…
360 eglw::__eglMustCastToProperFunctionPointerType returnValue = m_egl.getProcAddress(procname);
366 eglw::EGLBoolean CallLogWrapper::eglGetSyncAttrib (eglw::EGLDisplay dpy, eglw::EGLSync sync, eglw::…
370 eglw::EGLBoolean returnValue = m_egl.getSyncAttrib(dpy, sync, attribute, value);
376 eglw::EGLBoolean CallLogWrapper::eglGetSyncAttribKHR (eglw::EGLDisplay dpy, eglw::EGLSyncKHR sync,
380 eglw::EGLBoolean returnValue = m_egl.getSyncAttribKHR(dpy, sync, attribute, value);
386 eglw::EGLBoolean CallLogWrapper::eglInitialize (eglw::EGLDisplay dpy, eglw::EGLint *major, eglw::EG…
390 eglw::EGLBoolean returnValue = m_egl.initialize(dpy, major, minor);
396 eglw::EGLBoolean CallLogWrapper::eglLockSurfaceKHR (eglw::EGLDisplay dpy, eglw::EGLSurface surface,…
400 eglw::EGLBoolean returnValue = m_egl.lockSurfaceKHR(dpy, surface, attrib_list);
406 eglw::EGLBoolean CallLogWrapper::eglMakeCurrent (eglw::EGLDisplay dpy, eglw::EGLSurface draw, eglw:…
410 eglw::EGLBoolean returnValue = m_egl.makeCurrent(dpy, draw, read, ctx);
416 eglw::EGLenum CallLogWrapper::eglQueryAPI ()
420 eglw::EGLenum returnValue = m_egl.queryAPI();
426 eglw::EGLBoolean CallLogWrapper::eglQueryContext (eglw::EGLDisplay dpy, eglw::EGLContext ctx, eglw:…
430 eglw::EGLBoolean returnValue = m_egl.queryContext(dpy, ctx, attribute, value);
440 const char * CallLogWrapper::eglQueryString (eglw::EGLDisplay dpy, eglw::EGLint name)
450 eglw::EGLBoolean CallLogWrapper::eglQuerySurface (eglw::EGLDisplay dpy, eglw::EGLSurface surface, e…
454 eglw::EGLBoolean returnValue = m_egl.querySurface(dpy, surface, attribute, value);
464 eglw::EGLBoolean CallLogWrapper::eglReleaseTexImage (eglw::EGLDisplay dpy, eglw::EGLSurface surface…
468 eglw::EGLBoolean returnValue = m_egl.releaseTexImage(dpy, surface, buffer);
474 eglw::EGLBoolean CallLogWrapper::eglReleaseThread ()
478 eglw::EGLBoolean returnValue = m_egl.releaseThread();
484 eglw::EGLBoolean CallLogWrapper::eglSetDamageRegionKHR (eglw::EGLDisplay dpy, eglw::EGLSurface surf…
488 eglw::EGLBoolean returnValue = m_egl.setDamageRegionKHR(dpy, surface, rects, n_rects);
494 eglw::EGLBoolean CallLogWrapper::eglSignalSyncKHR (eglw::EGLDisplay dpy, eglw::EGLSyncKHR sync, egl…
498 eglw::EGLBoolean returnValue = m_egl.signalSyncKHR(dpy, sync, mode);
504 eglw::EGLBoolean CallLogWrapper::eglSurfaceAttrib (eglw::EGLDisplay dpy, eglw::EGLSurface surface,
508 eglw::EGLBoolean returnValue = m_egl.surfaceAttrib(dpy, surface, attribute, value);
514 eglw::EGLBoolean CallLogWrapper::eglSwapBuffers (eglw::EGLDisplay dpy, eglw::EGLSurface surface)
518 eglw::EGLBoolean returnValue = m_egl.swapBuffers(dpy, surface);
524 eglw::EGLBoolean CallLogWrapper::eglSwapBuffersWithDamageKHR (eglw::EGLDisplay dpy, eglw::EGLSurfac…
528 eglw::EGLBoolean returnValue = m_egl.swapBuffersWithDamageKHR(dpy, surface, rects, n_rects);
534 eglw::EGLBoolean CallLogWrapper::eglSwapInterval (eglw::EGLDisplay dpy, eglw::EGLint interval)
538 eglw::EGLBoolean returnValue = m_egl.swapInterval(dpy, interval);
544 eglw::EGLBoolean CallLogWrapper::eglTerminate (eglw::EGLDisplay dpy)
548 eglw::EGLBoolean returnValue = m_egl.terminate(dpy);
554 eglw::EGLBoolean CallLogWrapper::eglUnlockSurfaceKHR (eglw::EGLDisplay dpy, eglw::EGLSurface surfac…
558 eglw::EGLBoolean returnValue = m_egl.unlockSurfaceKHR(dpy, surface);
564 eglw::EGLBoolean CallLogWrapper::eglWaitClient ()
568 eglw::EGLBoolean returnValue = m_egl.waitClient();
574 eglw::EGLBoolean CallLogWrapper::eglWaitGL ()
578 eglw::EGLBoolean returnValue = m_egl.waitGL();
584 eglw::EGLBoolean CallLogWrapper::eglWaitNative (eglw::EGLint engine)
588 eglw::EGLBoolean returnValue = m_egl.waitNative(engine);
594 eglw::EGLBoolean CallLogWrapper::eglWaitSync (eglw::EGLDisplay dpy, eglw::EGLSync sync, eglw::EGLin…
598 eglw::EGLBoolean returnValue = m_egl.waitSync(dpy, sync, flags);
604 eglw::EGLint CallLogWrapper::eglWaitSyncKHR (eglw::EGLDisplay dpy, eglw::EGLSyncKHR sync, eglw::EGL…
608 eglw::EGLint returnValue = m_egl.waitSyncKHR(dpy, sync, flags);