Lines Matching defs:APIENTRY
12 #if defined(_WIN32) && !defined(APIENTRY) && !defined(__CYGWIN__) && !defined(__SCITECH_SNAP__)
17 #ifndef APIENTRY
18 #define APIENTRY
214 EGLAPI EGLint APIENTRY eglGetError();
216 EGLAPI EGLDisplay APIENTRY eglGetDisplay(const char *display_id);
217 EGLAPI EGLBoolean APIENTRY eglInitialize(EGLDisplay dpy, EGLint *major, EGLint *minor);
218 EGLAPI EGLBoolean APIENTRY eglTerminate(EGLDisplay dpy);
220 EGLAPI const char * APIENTRY eglQueryString(EGLDisplay dpy, EGLint name);
222 EGLAPI EGLBoolean APIENTRY eglGetConfigs(EGLDisplay dpy, EGLConfig *configs,
224 EGLAPI EGLBoolean APIENTRY eglChooseConfig(EGLDisplay dpy, const EGLint *attrib_list,
227 EGLAPI EGLBoolean APIENTRY eglGetConfigAttrib(EGLDisplay dpy, EGLConfig config,
230 EGLAPI EGLSurface APIENTRY eglCreateWindowSurface(EGLDisplay dpy, EGLConfig config,
233 EGLAPI EGLSurface APIENTRY eglCreatePbufferSurface(EGLDisplay dpy, EGLConfig config,
235 EGLAPI EGLSurface APIENTRY eglCreatePixmapSurface(EGLDisplay dpy, EGLConfig config,
238 EGLAPI EGLBoolean APIENTRY eglDestroySurface(EGLDisplay dpy, EGLSurface surface);
239 EGLAPI EGLBoolean APIENTRY eglQuerySurface(EGLDisplay dpy, EGLSurface surface,
242 EGLAPI EGLBoolean APIENTRY eglBindAPI(EGLenum api);
243 EGLAPI EGLenum APIENTRY eglQueryAPI(void);
245 EGLAPI EGLBoolean APIENTRY eglWaitClient(void);
247 EGLAPI EGLBoolean APIENTRY eglReleaseThread(void);
249 EGLAPI EGLSurface APIENTRY eglCreatePbufferFromClientBuffer(
253 EGLAPI EGLBoolean APIENTRY eglSurfaceAttrib(EGLDisplay dpy, EGLSurface surface,
255 EGLAPI EGLBoolean APIENTRY eglBindTexImage(EGLDisplay dpy, EGLSurface surface, EGLint buffer);
256 EGLAPI EGLBoolean APIENTRY eglReleaseTexImage(EGLDisplay dpy, EGLSurface surface, EGLint buffer);
259 EGLAPI EGLBoolean APIENTRY eglSwapInterval(EGLDisplay dpy, EGLint interval);
262 EGLAPI EGLContext APIENTRY eglCreateContext(EGLDisplay dpy, EGLConfig config,
265 EGLAPI EGLBoolean APIENTRY eglDestroyContext(EGLDisplay dpy, EGLContext ctx);
266 EGLAPI EGLBoolean APIENTRY eglMakeCurrent(EGLDisplay dpy, EGLSurface draw,
269 EGLAPI EGLContext APIENTRY eglGetCurrentContext(void);
270 EGLAPI EGLSurface APIENTRY eglGetCurrentSurface(EGLint readdraw);
271 EGLAPI EGLDisplay APIENTRY eglGetCurrentDisplay(void);
272 EGLAPI EGLBoolean APIENTRY eglQueryContext(EGLDisplay dpy, EGLContext ctx,
275 EGLAPI EGLBoolean APIENTRY eglWaitGL(void);
276 EGLAPI EGLBoolean APIENTRY eglWaitNative(EGLint engine);
277 EGLAPI EGLBoolean APIENTRY eglSwapBuffers(EGLDisplay dpy, EGLSurface surface);
278 EGLAPI EGLBoolean APIENTRY eglCopyBuffers(EGLDisplay dpy, EGLSurface surface,
281 EGLAPI void (* APIENTRY eglGetProcAddress(const char *procname))();