Lines Matching refs:dpy

69 EGLBoolean eglInitialize(EGLDisplay dpy, EGLint* major, EGLint* minor) {  in eglInitialize()  argument
73 return cnx->platform.eglInitialize(dpy, major, minor); in eglInitialize()
76 EGLBoolean eglTerminate(EGLDisplay dpy) { in eglTerminate() argument
80 return cnx->platform.eglTerminate(dpy); in eglTerminate()
83 EGLBoolean eglGetConfigs(EGLDisplay dpy, EGLConfig* configs, EGLint config_size, in eglGetConfigs() argument
88 return cnx->platform.eglGetConfigs(dpy, configs, config_size, num_config); in eglGetConfigs()
91 EGLBoolean eglChooseConfig(EGLDisplay dpy, const EGLint* attrib_list, EGLConfig* configs, in eglChooseConfig() argument
96 return cnx->platform.eglChooseConfig(dpy, attrib_list, configs, config_size, num_config); in eglChooseConfig()
99 EGLBoolean eglGetConfigAttrib(EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint* value) { in eglGetConfigAttrib() argument
103 return cnx->platform.eglGetConfigAttrib(dpy, config, attribute, value); in eglGetConfigAttrib()
106 EGLSurface eglCreateWindowSurface(EGLDisplay dpy, EGLConfig config, NativeWindowType window, in eglCreateWindowSurface() argument
111 return cnx->platform.eglCreateWindowSurface(dpy, config, window, attrib_list); in eglCreateWindowSurface()
114 EGLSurface eglCreatePlatformWindowSurface(EGLDisplay dpy, EGLConfig config, void* native_window, in eglCreatePlatformWindowSurface() argument
119 return cnx->platform.eglCreatePlatformWindowSurface(dpy, config, native_window, attrib_list); in eglCreatePlatformWindowSurface()
122 EGLSurface eglCreatePixmapSurface(EGLDisplay dpy, EGLConfig config, NativePixmapType pixmap, in eglCreatePixmapSurface() argument
127 return cnx->platform.eglCreatePixmapSurface(dpy, config, pixmap, attrib_list); in eglCreatePixmapSurface()
130 EGLSurface eglCreatePlatformPixmapSurface(EGLDisplay dpy, EGLConfig config, void* native_pixmap, in eglCreatePlatformPixmapSurface() argument
135 return cnx->platform.eglCreatePlatformPixmapSurface(dpy, config, native_pixmap, attrib_list); in eglCreatePlatformPixmapSurface()
138 EGLSurface eglCreatePbufferSurface(EGLDisplay dpy, EGLConfig config, const EGLint* attrib_list) { in eglCreatePbufferSurface() argument
142 return cnx->platform.eglCreatePbufferSurface(dpy, config, attrib_list); in eglCreatePbufferSurface()
145 EGLBoolean eglDestroySurface(EGLDisplay dpy, EGLSurface surface) { in eglDestroySurface() argument
149 return cnx->platform.eglDestroySurface(dpy, surface); in eglDestroySurface()
152 EGLBoolean eglQuerySurface(EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint* value) { in eglQuerySurface() argument
156 return cnx->platform.eglQuerySurface(dpy, surface, attribute, value); in eglQuerySurface()
159 void EGLAPI eglBeginFrame(EGLDisplay dpy, EGLSurface surface) { in eglBeginFrame() argument
164 cnx->platform.eglBeginFrame(dpy, surface); in eglBeginFrame()
167 EGLContext eglCreateContext(EGLDisplay dpy, EGLConfig config, EGLContext share_list, in eglCreateContext() argument
172 return cnx->platform.eglCreateContext(dpy, config, share_list, attrib_list); in eglCreateContext()
175 EGLBoolean eglDestroyContext(EGLDisplay dpy, EGLContext ctx) { in eglDestroyContext() argument
179 return cnx->platform.eglDestroyContext(dpy, ctx); in eglDestroyContext()
182 EGLBoolean eglMakeCurrent(EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx) { in eglMakeCurrent() argument
186 return cnx->platform.eglMakeCurrent(dpy, draw, read, ctx); in eglMakeCurrent()
189 EGLBoolean eglQueryContext(EGLDisplay dpy, EGLContext ctx, EGLint attribute, EGLint* value) { in eglQueryContext() argument
193 return cnx->platform.eglQueryContext(dpy, ctx, attribute, value); in eglQueryContext()
251 EGLBoolean eglSwapBuffersWithDamageKHR(EGLDisplay dpy, EGLSurface draw, EGLint* rects, in eglSwapBuffersWithDamageKHR() argument
257 return cnx->platform.eglSwapBuffersWithDamageKHR(dpy, draw, rects, n_rects); in eglSwapBuffersWithDamageKHR()
260 EGLBoolean eglSwapBuffers(EGLDisplay dpy, EGLSurface surface) { in eglSwapBuffers() argument
265 return cnx->platform.eglSwapBuffers(dpy, surface); in eglSwapBuffers()
268 EGLBoolean eglCopyBuffers(EGLDisplay dpy, EGLSurface surface, NativePixmapType target) { in eglCopyBuffers() argument
272 return cnx->platform.eglCopyBuffers(dpy, surface, target); in eglCopyBuffers()
275 const char* eglQueryString(EGLDisplay dpy, EGLint name) { in eglQueryString() argument
279 return cnx->platform.eglQueryString(dpy, name); in eglQueryString()
282 extern "C" EGLAPI const char* eglQueryStringImplementationANDROID(EGLDisplay dpy, EGLint name) { in eglQueryStringImplementationANDROID() argument
286 return cnx->platform.eglQueryStringImplementationANDROID(dpy, name); in eglQueryStringImplementationANDROID()
289 EGLBoolean eglSurfaceAttrib(EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint value) { in eglSurfaceAttrib() argument
293 return cnx->platform.eglSurfaceAttrib(dpy, surface, attribute, value); in eglSurfaceAttrib()
296 EGLBoolean eglBindTexImage(EGLDisplay dpy, EGLSurface surface, EGLint buffer) { in eglBindTexImage() argument
300 return cnx->platform.eglBindTexImage(dpy, surface, buffer); in eglBindTexImage()
303 EGLBoolean eglReleaseTexImage(EGLDisplay dpy, EGLSurface surface, EGLint buffer) { in eglReleaseTexImage() argument
307 return cnx->platform.eglReleaseTexImage(dpy, surface, buffer); in eglReleaseTexImage()
310 EGLBoolean eglSwapInterval(EGLDisplay dpy, EGLint interval) { in eglSwapInterval() argument
314 return cnx->platform.eglSwapInterval(dpy, interval); in eglSwapInterval()
351 EGLSurface eglCreatePbufferFromClientBuffer(EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer, in eglCreatePbufferFromClientBuffer() argument
356 return cnx->platform.eglCreatePbufferFromClientBuffer(dpy, buftype, buffer, config, in eglCreatePbufferFromClientBuffer()
360 EGLBoolean eglLockSurfaceKHR(EGLDisplay dpy, EGLSurface surface, const EGLint* attrib_list) { in eglLockSurfaceKHR() argument
364 return cnx->platform.eglLockSurfaceKHR(dpy, surface, attrib_list); in eglLockSurfaceKHR()
367 EGLBoolean eglUnlockSurfaceKHR(EGLDisplay dpy, EGLSurface surface) { in eglUnlockSurfaceKHR() argument
371 return cnx->platform.eglUnlockSurfaceKHR(dpy, surface); in eglUnlockSurfaceKHR()
374 EGLImageKHR eglCreateImageKHR(EGLDisplay dpy, EGLContext ctx, EGLenum target, in eglCreateImageKHR() argument
379 return cnx->platform.eglCreateImageKHR(dpy, ctx, target, buffer, attrib_list); in eglCreateImageKHR()
382 EGLImage eglCreateImage(EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, in eglCreateImage() argument
387 return cnx->platform.eglCreateImage(dpy, ctx, target, buffer, attrib_list); in eglCreateImage()
390 EGLBoolean eglDestroyImageKHR(EGLDisplay dpy, EGLImageKHR img) { in eglDestroyImageKHR() argument
394 return cnx->platform.eglDestroyImageKHR(dpy, img); in eglDestroyImageKHR()
397 EGLBoolean eglDestroyImage(EGLDisplay dpy, EGLImageKHR img) { in eglDestroyImage() argument
401 return cnx->platform.eglDestroyImage(dpy, img); in eglDestroyImage()
408 EGLSyncKHR eglCreateSync(EGLDisplay dpy, EGLenum type, const EGLAttrib* attrib_list) { in eglCreateSync() argument
412 return cnx->platform.eglCreateSync(dpy, type, attrib_list); in eglCreateSync()
415 EGLSyncKHR eglCreateSyncKHR(EGLDisplay dpy, EGLenum type, const EGLint* attrib_list) { in eglCreateSyncKHR() argument
419 return cnx->platform.eglCreateSyncKHR(dpy, type, attrib_list); in eglCreateSyncKHR()
422 EGLBoolean eglDestroySync(EGLDisplay dpy, EGLSyncKHR sync) { in eglDestroySync() argument
426 return cnx->platform.eglDestroySync(dpy, sync); in eglDestroySync()
429 EGLBoolean eglDestroySyncKHR(EGLDisplay dpy, EGLSyncKHR sync) { in eglDestroySyncKHR() argument
433 return cnx->platform.eglDestroySyncKHR(dpy, sync); in eglDestroySyncKHR()
436 EGLBoolean eglSignalSyncKHR(EGLDisplay dpy, EGLSyncKHR sync, EGLenum mode) { in eglSignalSyncKHR() argument
440 return cnx->platform.eglSignalSyncKHR(dpy, sync, mode); in eglSignalSyncKHR()
443 EGLint eglClientWaitSync(EGLDisplay dpy, EGLSync sync, EGLint flags, EGLTimeKHR timeout) { in eglClientWaitSync() argument
447 return cnx->platform.eglClientWaitSyncKHR(dpy, sync, flags, timeout); in eglClientWaitSync()
450 EGLint eglClientWaitSyncKHR(EGLDisplay dpy, EGLSyncKHR sync, EGLint flags, EGLTimeKHR timeout) { in eglClientWaitSyncKHR() argument
454 return cnx->platform.eglClientWaitSyncKHR(dpy, sync, flags, timeout); in eglClientWaitSyncKHR()
457 EGLBoolean eglGetSyncAttrib(EGLDisplay dpy, EGLSync sync, EGLint attribute, EGLAttrib* value) { in eglGetSyncAttrib() argument
461 return cnx->platform.eglGetSyncAttrib(dpy, sync, attribute, value); in eglGetSyncAttrib()
464 EGLBoolean eglGetSyncAttribKHR(EGLDisplay dpy, EGLSyncKHR sync, EGLint attribute, EGLint* value) { in eglGetSyncAttribKHR() argument
468 return cnx->platform.eglGetSyncAttribKHR(dpy, sync, attribute, value); in eglGetSyncAttribKHR()
471 EGLStreamKHR eglCreateStreamKHR(EGLDisplay dpy, const EGLint* attrib_list) { in eglCreateStreamKHR() argument
475 return cnx->platform.eglCreateStreamKHR(dpy, attrib_list); in eglCreateStreamKHR()
478 EGLBoolean eglDestroyStreamKHR(EGLDisplay dpy, EGLStreamKHR stream) { in eglDestroyStreamKHR() argument
482 return cnx->platform.eglDestroyStreamKHR(dpy, stream); in eglDestroyStreamKHR()
485 EGLBoolean eglStreamAttribKHR(EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, in eglStreamAttribKHR() argument
490 return cnx->platform.eglStreamAttribKHR(dpy, stream, attribute, value); in eglStreamAttribKHR()
493 EGLBoolean eglQueryStreamKHR(EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, in eglQueryStreamKHR() argument
498 return cnx->platform.eglQueryStreamKHR(dpy, stream, attribute, value); in eglQueryStreamKHR()
501 EGLBoolean eglQueryStreamu64KHR(EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, in eglQueryStreamu64KHR() argument
506 return cnx->platform.eglQueryStreamu64KHR(dpy, stream, attribute, value); in eglQueryStreamu64KHR()
509 EGLBoolean eglQueryStreamTimeKHR(EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, in eglQueryStreamTimeKHR() argument
514 return cnx->platform.eglQueryStreamTimeKHR(dpy, stream, attribute, value); in eglQueryStreamTimeKHR()
517 EGLSurface eglCreateStreamProducerSurfaceKHR(EGLDisplay dpy, EGLConfig config, EGLStreamKHR stream, in eglCreateStreamProducerSurfaceKHR() argument
522 return cnx->platform.eglCreateStreamProducerSurfaceKHR(dpy, config, stream, attrib_list); in eglCreateStreamProducerSurfaceKHR()
525 EGLBoolean eglStreamConsumerGLTextureExternalKHR(EGLDisplay dpy, EGLStreamKHR stream) { in eglStreamConsumerGLTextureExternalKHR() argument
529 return cnx->platform.eglStreamConsumerGLTextureExternalKHR(dpy, stream); in eglStreamConsumerGLTextureExternalKHR()
532 EGLBoolean eglStreamConsumerAcquireKHR(EGLDisplay dpy, EGLStreamKHR stream) { in eglStreamConsumerAcquireKHR() argument
536 return cnx->platform.eglStreamConsumerAcquireKHR(dpy, stream); in eglStreamConsumerAcquireKHR()
539 EGLBoolean eglStreamConsumerReleaseKHR(EGLDisplay dpy, EGLStreamKHR stream) { in eglStreamConsumerReleaseKHR() argument
543 return cnx->platform.eglStreamConsumerReleaseKHR(dpy, stream); in eglStreamConsumerReleaseKHR()
546 EGLNativeFileDescriptorKHR eglGetStreamFileDescriptorKHR(EGLDisplay dpy, EGLStreamKHR stream) { in eglGetStreamFileDescriptorKHR() argument
550 return cnx->platform.eglGetStreamFileDescriptorKHR(dpy, stream); in eglGetStreamFileDescriptorKHR()
553 EGLStreamKHR eglCreateStreamFromFileDescriptorKHR(EGLDisplay dpy, in eglCreateStreamFromFileDescriptorKHR() argument
558 return cnx->platform.eglCreateStreamFromFileDescriptorKHR(dpy, file_descriptor); in eglCreateStreamFromFileDescriptorKHR()
561 EGLint eglWaitSyncKHR(EGLDisplay dpy, EGLSyncKHR sync, EGLint flags) { in eglWaitSyncKHR() argument
564 return cnx->platform.eglWaitSyncKHR(dpy, sync, flags); in eglWaitSyncKHR()
567 EGLBoolean eglWaitSync(EGLDisplay dpy, EGLSync sync, EGLint flags) { in eglWaitSync() argument
570 return cnx->platform.eglWaitSync(dpy, sync, flags); in eglWaitSync()
573 EGLint eglDupNativeFenceFDANDROID(EGLDisplay dpy, EGLSyncKHR sync) { in eglDupNativeFenceFDANDROID() argument
577 return cnx->platform.eglDupNativeFenceFDANDROID(dpy, sync); in eglDupNativeFenceFDANDROID()
580 EGLBoolean eglPresentationTimeANDROID(EGLDisplay dpy, EGLSurface surface, EGLnsecsANDROID time) { in eglPresentationTimeANDROID() argument
584 return cnx->platform.eglPresentationTimeANDROID(dpy, surface, time); in eglPresentationTimeANDROID()
613 EGLBoolean eglSetDamageRegionKHR(EGLDisplay dpy, EGLSurface surface, EGLint* rects, in eglSetDamageRegionKHR() argument
618 return cnx->platform.eglSetDamageRegionKHR(dpy, surface, rects, n_rects); in eglSetDamageRegionKHR()
621 EGLBoolean eglGetNextFrameIdANDROID(EGLDisplay dpy, EGLSurface surface, EGLuint64KHR* frameId) { in eglGetNextFrameIdANDROID() argument
625 return cnx->platform.eglGetNextFrameIdANDROID(dpy, surface, frameId); in eglGetNextFrameIdANDROID()
628 EGLBoolean eglGetCompositorTimingANDROID(EGLDisplay dpy, EGLSurface surface, EGLint numTimestamps, in eglGetCompositorTimingANDROID() argument
633 return cnx->platform.eglGetCompositorTimingANDROID(dpy, surface, numTimestamps, names, values); in eglGetCompositorTimingANDROID()
636 EGLBoolean eglGetCompositorTimingSupportedANDROID(EGLDisplay dpy, EGLSurface surface, EGLint name) { in eglGetCompositorTimingSupportedANDROID() argument
640 return cnx->platform.eglGetCompositorTimingSupportedANDROID(dpy, surface, name); in eglGetCompositorTimingSupportedANDROID()
643 EGLBoolean eglGetFrameTimestampsANDROID(EGLDisplay dpy, EGLSurface surface, EGLuint64KHR frameId, in eglGetFrameTimestampsANDROID() argument
649 return cnx->platform.eglGetFrameTimestampsANDROID(dpy, surface, frameId, numTimestamps, in eglGetFrameTimestampsANDROID()
653 EGLBoolean eglGetFrameTimestampSupportedANDROID(EGLDisplay dpy, EGLSurface surface, in eglGetFrameTimestampSupportedANDROID() argument
658 return cnx->platform.eglGetFrameTimestampSupportedANDROID(dpy, surface, timestamp); in eglGetFrameTimestampSupportedANDROID()