Lines Matching refs:dpy
15 EGLBoolean eglwBindTexImage (EGLDisplay dpy, EGLSurface surface, EGLint buffer) argument
20 return egl->bindTexImage(dpy, surface, buffer);
23 EGLBoolean eglwChooseConfig (EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint … argument
28 return egl->chooseConfig(dpy, attrib_list, configs, config_size, num_config);
31 EGLint eglwClientWaitSync (EGLDisplay dpy, EGLSync sync, EGLint flags, EGLTime timeout) argument
36 return egl->clientWaitSync(dpy, sync, flags, timeout);
39 EGLBoolean eglwCopyBuffers (EGLDisplay dpy, EGLSurface surface, EGLNativePixmapType target) argument
44 return egl->copyBuffers(dpy, surface, (void*)target);
47 EGLContext eglwCreateContext (EGLDisplay dpy, EGLConfig config, EGLContext share_context, const EGL… argument
52 return egl->createContext(dpy, config, share_context, attrib_list);
55 EGLImage eglwCreateImage (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, c… argument
60 return egl->createImage(dpy, ctx, target, buffer, attrib_list);
63 EGLSurface eglwCreatePbufferFromClientBuffer (EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buff… argument
68 return egl->createPbufferFromClientBuffer(dpy, buftype, buffer, config, attrib_list);
71 EGLSurface eglwCreatePbufferSurface (EGLDisplay dpy, EGLConfig config, const EGLint *attrib_list) argument
76 return egl->createPbufferSurface(dpy, config, attrib_list);
79 EGLSurface eglwCreatePixmapSurface (EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, c… argument
84 return egl->createPixmapSurface(dpy, config, (void*)pixmap, attrib_list);
87 EGLSurface eglwCreatePlatformPixmapSurface (EGLDisplay dpy, EGLConfig config, void *native_pixmap, … argument
92 return egl->createPlatformPixmapSurface(dpy, config, native_pixmap, attrib_list);
95 EGLSurface eglwCreatePlatformWindowSurface (EGLDisplay dpy, EGLConfig config, void *native_window, … argument
100 return egl->createPlatformWindowSurface(dpy, config, native_window, attrib_list);
103 EGLSync eglwCreateSync (EGLDisplay dpy, EGLenum type, const EGLAttrib *attrib_list) argument
108 return egl->createSync(dpy, type, attrib_list);
111 EGLSurface eglwCreateWindowSurface (EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, cons… argument
116 return egl->createWindowSurface(dpy, config, (void*)win, attrib_list);
119 EGLBoolean eglwDestroyContext (EGLDisplay dpy, EGLContext ctx) argument
124 return egl->destroyContext(dpy, ctx);
127 EGLBoolean eglwDestroyImage (EGLDisplay dpy, EGLImage image) argument
132 return egl->destroyImage(dpy, image);
135 EGLBoolean eglwDestroySurface (EGLDisplay dpy, EGLSurface surface) argument
140 return egl->destroySurface(dpy, surface);
143 EGLBoolean eglwDestroySync (EGLDisplay dpy, EGLSync sync) argument
148 return egl->destroySync(dpy, sync);
151 EGLBoolean eglwGetConfigAttrib (EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint *value) argument
156 return egl->getConfigAttrib(dpy, config, attribute, value);
159 EGLBoolean eglwGetConfigs (EGLDisplay dpy, EGLConfig *configs, EGLint config_size, EGLint *num_conf… argument
164 return egl->getConfigs(dpy, configs, config_size, num_config);
223 EGLBoolean eglwGetSyncAttrib (EGLDisplay dpy, EGLSync sync, EGLint attribute, EGLAttrib *value) argument
228 return egl->getSyncAttrib(dpy, sync, attribute, value);
231 EGLBoolean eglwInitialize (EGLDisplay dpy, EGLint *major, EGLint *minor) argument
236 return egl->initialize(dpy, major, minor);
239 EGLBoolean eglwMakeCurrent (EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx) argument
244 return egl->makeCurrent(dpy, draw, read, ctx);
255 EGLBoolean eglwQueryContext (EGLDisplay dpy, EGLContext ctx, EGLint attribute, EGLint *value) argument
260 return egl->queryContext(dpy, ctx, attribute, value);
263 const char * eglwQueryString (EGLDisplay dpy, EGLint name) argument
268 return egl->queryString(dpy, name);
271 EGLBoolean eglwQuerySurface (EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint *value) argument
276 return egl->querySurface(dpy, surface, attribute, value);
279 EGLBoolean eglwReleaseTexImage (EGLDisplay dpy, EGLSurface surface, EGLint buffer) argument
284 return egl->releaseTexImage(dpy, surface, buffer);
295 EGLBoolean eglwSurfaceAttrib (EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint value) argument
300 return egl->surfaceAttrib(dpy, surface, attribute, value);
303 EGLBoolean eglwSwapBuffers (EGLDisplay dpy, EGLSurface surface) argument
308 return egl->swapBuffers(dpy, surface);
311 EGLBoolean eglwSwapInterval (EGLDisplay dpy, EGLint interval) argument
316 return egl->swapInterval(dpy, interval);
319 EGLBoolean eglwTerminate (EGLDisplay dpy) argument
324 return egl->terminate(dpy);
351 EGLBoolean eglwWaitSync (EGLDisplay dpy, EGLSync sync, EGLint flags) argument
356 return egl->waitSync(dpy, sync, flags);