Lines Matching refs:dpy
70 EGLBoolean eglInitialize(EGLDisplay dpy, EGLint* major, EGLint* minor) { in eglInitialize() argument
74 return cnx->platform.eglInitialize(dpy, major, minor); in eglInitialize()
77 EGLBoolean eglTerminate(EGLDisplay dpy) { in eglTerminate() argument
81 return cnx->platform.eglTerminate(dpy); in eglTerminate()
84 EGLBoolean eglGetConfigs(EGLDisplay dpy, EGLConfig* configs, EGLint config_size, in eglGetConfigs() argument
89 return cnx->platform.eglGetConfigs(dpy, configs, config_size, num_config); in eglGetConfigs()
92 EGLBoolean eglChooseConfig(EGLDisplay dpy, const EGLint* attrib_list, EGLConfig* configs, in eglChooseConfig() argument
97 return cnx->platform.eglChooseConfig(dpy, attrib_list, configs, config_size, num_config); in eglChooseConfig()
100 EGLBoolean eglGetConfigAttrib(EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint* value) { in eglGetConfigAttrib() argument
104 return cnx->platform.eglGetConfigAttrib(dpy, config, attribute, value); in eglGetConfigAttrib()
107 EGLSurface eglCreateWindowSurface(EGLDisplay dpy, EGLConfig config, NativeWindowType window, in eglCreateWindowSurface() argument
112 return cnx->platform.eglCreateWindowSurface(dpy, config, window, attrib_list); in eglCreateWindowSurface()
115 EGLSurface eglCreatePlatformWindowSurface(EGLDisplay dpy, EGLConfig config, void* native_window, in eglCreatePlatformWindowSurface() argument
120 return cnx->platform.eglCreatePlatformWindowSurface(dpy, config, native_window, attrib_list); in eglCreatePlatformWindowSurface()
123 EGLSurface eglCreatePixmapSurface(EGLDisplay dpy, EGLConfig config, NativePixmapType pixmap, in eglCreatePixmapSurface() argument
128 return cnx->platform.eglCreatePixmapSurface(dpy, config, pixmap, attrib_list); in eglCreatePixmapSurface()
131 EGLSurface eglCreatePlatformPixmapSurface(EGLDisplay dpy, EGLConfig config, void* native_pixmap, in eglCreatePlatformPixmapSurface() argument
136 return cnx->platform.eglCreatePlatformPixmapSurface(dpy, config, native_pixmap, attrib_list); in eglCreatePlatformPixmapSurface()
139 EGLSurface eglCreatePbufferSurface(EGLDisplay dpy, EGLConfig config, const EGLint* attrib_list) { in eglCreatePbufferSurface() argument
143 return cnx->platform.eglCreatePbufferSurface(dpy, config, attrib_list); in eglCreatePbufferSurface()
146 EGLBoolean eglDestroySurface(EGLDisplay dpy, EGLSurface surface) { in eglDestroySurface() argument
150 return cnx->platform.eglDestroySurface(dpy, surface); in eglDestroySurface()
153 EGLBoolean eglQuerySurface(EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint* value) { in eglQuerySurface() argument
157 return cnx->platform.eglQuerySurface(dpy, surface, attribute, value); in eglQuerySurface()
160 void EGLAPI eglBeginFrame(EGLDisplay dpy, EGLSurface surface) { in eglBeginFrame() argument
165 cnx->platform.eglBeginFrame(dpy, surface); in eglBeginFrame()
168 EGLContext eglCreateContext(EGLDisplay dpy, EGLConfig config, EGLContext share_list, in eglCreateContext() argument
173 return cnx->platform.eglCreateContext(dpy, config, share_list, attrib_list); in eglCreateContext()
176 EGLBoolean eglDestroyContext(EGLDisplay dpy, EGLContext ctx) { in eglDestroyContext() argument
180 return cnx->platform.eglDestroyContext(dpy, ctx); in eglDestroyContext()
183 EGLBoolean eglMakeCurrent(EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx) { in eglMakeCurrent() argument
187 return cnx->platform.eglMakeCurrent(dpy, draw, read, ctx); in eglMakeCurrent()
190 EGLBoolean eglQueryContext(EGLDisplay dpy, EGLContext ctx, EGLint attribute, EGLint* value) { in eglQueryContext() argument
194 return cnx->platform.eglQueryContext(dpy, ctx, attribute, value); in eglQueryContext()
252 EGLBoolean eglSwapBuffersWithDamageKHR(EGLDisplay dpy, EGLSurface draw, EGLint* rects, in eglSwapBuffersWithDamageKHR() argument
258 return cnx->platform.eglSwapBuffersWithDamageKHR(dpy, draw, rects, n_rects); in eglSwapBuffersWithDamageKHR()
261 EGLBoolean eglSwapBuffers(EGLDisplay dpy, EGLSurface surface) { in eglSwapBuffers() argument
266 return cnx->platform.eglSwapBuffers(dpy, surface); in eglSwapBuffers()
269 EGLBoolean eglCopyBuffers(EGLDisplay dpy, EGLSurface surface, NativePixmapType target) { in eglCopyBuffers() argument
273 return cnx->platform.eglCopyBuffers(dpy, surface, target); in eglCopyBuffers()
276 const char* eglQueryString(EGLDisplay dpy, EGLint name) { in eglQueryString() argument
280 return cnx->platform.eglQueryString(dpy, name); in eglQueryString()
283 extern "C" EGLAPI const char* eglQueryStringImplementationANDROID(EGLDisplay dpy, EGLint name) { in eglQueryStringImplementationANDROID() argument
287 return cnx->platform.eglQueryStringImplementationANDROID(dpy, name); in eglQueryStringImplementationANDROID()
290 EGLBoolean eglSurfaceAttrib(EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint value) { in eglSurfaceAttrib() argument
294 return cnx->platform.eglSurfaceAttrib(dpy, surface, attribute, value); in eglSurfaceAttrib()
297 EGLBoolean eglBindTexImage(EGLDisplay dpy, EGLSurface surface, EGLint buffer) { in eglBindTexImage() argument
301 return cnx->platform.eglBindTexImage(dpy, surface, buffer); in eglBindTexImage()
304 EGLBoolean eglReleaseTexImage(EGLDisplay dpy, EGLSurface surface, EGLint buffer) { in eglReleaseTexImage() argument
308 return cnx->platform.eglReleaseTexImage(dpy, surface, buffer); in eglReleaseTexImage()
311 EGLBoolean eglSwapInterval(EGLDisplay dpy, EGLint interval) { in eglSwapInterval() argument
315 return cnx->platform.eglSwapInterval(dpy, interval); in eglSwapInterval()
352 EGLSurface eglCreatePbufferFromClientBuffer(EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer, in eglCreatePbufferFromClientBuffer() argument
357 return cnx->platform.eglCreatePbufferFromClientBuffer(dpy, buftype, buffer, config, in eglCreatePbufferFromClientBuffer()
361 EGLBoolean eglLockSurfaceKHR(EGLDisplay dpy, EGLSurface surface, const EGLint* attrib_list) { in eglLockSurfaceKHR() argument
365 return cnx->platform.eglLockSurfaceKHR(dpy, surface, attrib_list); in eglLockSurfaceKHR()
368 EGLBoolean eglUnlockSurfaceKHR(EGLDisplay dpy, EGLSurface surface) { in eglUnlockSurfaceKHR() argument
372 return cnx->platform.eglUnlockSurfaceKHR(dpy, surface); in eglUnlockSurfaceKHR()
375 EGLImageKHR eglCreateImageKHR(EGLDisplay dpy, EGLContext ctx, EGLenum target, in eglCreateImageKHR() argument
380 return cnx->platform.eglCreateImageKHR(dpy, ctx, target, buffer, attrib_list); in eglCreateImageKHR()
383 EGLImage eglCreateImage(EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, in eglCreateImage() argument
388 return cnx->platform.eglCreateImage(dpy, ctx, target, buffer, attrib_list); in eglCreateImage()
391 EGLBoolean eglDestroyImageKHR(EGLDisplay dpy, EGLImageKHR img) { in eglDestroyImageKHR() argument
395 return cnx->platform.eglDestroyImageKHR(dpy, img); in eglDestroyImageKHR()
398 EGLBoolean eglDestroyImage(EGLDisplay dpy, EGLImageKHR img) { in eglDestroyImage() argument
402 return cnx->platform.eglDestroyImage(dpy, img); in eglDestroyImage()
409 EGLSyncKHR eglCreateSync(EGLDisplay dpy, EGLenum type, const EGLAttrib* attrib_list) { in eglCreateSync() argument
413 return cnx->platform.eglCreateSync(dpy, type, attrib_list); in eglCreateSync()
416 EGLSyncKHR eglCreateSyncKHR(EGLDisplay dpy, EGLenum type, const EGLint* attrib_list) { in eglCreateSyncKHR() argument
420 return cnx->platform.eglCreateSyncKHR(dpy, type, attrib_list); in eglCreateSyncKHR()
423 EGLBoolean eglDestroySync(EGLDisplay dpy, EGLSyncKHR sync) { in eglDestroySync() argument
427 return cnx->platform.eglDestroySync(dpy, sync); in eglDestroySync()
430 EGLBoolean eglDestroySyncKHR(EGLDisplay dpy, EGLSyncKHR sync) { in eglDestroySyncKHR() argument
434 return cnx->platform.eglDestroySyncKHR(dpy, sync); in eglDestroySyncKHR()
437 EGLBoolean eglSignalSyncKHR(EGLDisplay dpy, EGLSyncKHR sync, EGLenum mode) { in eglSignalSyncKHR() argument
441 return cnx->platform.eglSignalSyncKHR(dpy, sync, mode); in eglSignalSyncKHR()
444 EGLint eglClientWaitSync(EGLDisplay dpy, EGLSync sync, EGLint flags, EGLTimeKHR timeout) { in eglClientWaitSync() argument
448 return cnx->platform.eglClientWaitSyncKHR(dpy, sync, flags, timeout); in eglClientWaitSync()
451 EGLint eglClientWaitSyncKHR(EGLDisplay dpy, EGLSyncKHR sync, EGLint flags, EGLTimeKHR timeout) { in eglClientWaitSyncKHR() argument
455 return cnx->platform.eglClientWaitSyncKHR(dpy, sync, flags, timeout); in eglClientWaitSyncKHR()
458 EGLBoolean eglGetSyncAttrib(EGLDisplay dpy, EGLSync sync, EGLint attribute, EGLAttrib* value) { in eglGetSyncAttrib() argument
462 return cnx->platform.eglGetSyncAttrib(dpy, sync, attribute, value); in eglGetSyncAttrib()
465 EGLBoolean eglGetSyncAttribKHR(EGLDisplay dpy, EGLSyncKHR sync, EGLint attribute, EGLint* value) { in eglGetSyncAttribKHR() argument
469 return cnx->platform.eglGetSyncAttribKHR(dpy, sync, attribute, value); in eglGetSyncAttribKHR()
472 EGLStreamKHR eglCreateStreamKHR(EGLDisplay dpy, const EGLint* attrib_list) { in eglCreateStreamKHR() argument
476 return cnx->platform.eglCreateStreamKHR(dpy, attrib_list); in eglCreateStreamKHR()
479 EGLBoolean eglDestroyStreamKHR(EGLDisplay dpy, EGLStreamKHR stream) { in eglDestroyStreamKHR() argument
483 return cnx->platform.eglDestroyStreamKHR(dpy, stream); in eglDestroyStreamKHR()
486 EGLBoolean eglStreamAttribKHR(EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, in eglStreamAttribKHR() argument
491 return cnx->platform.eglStreamAttribKHR(dpy, stream, attribute, value); in eglStreamAttribKHR()
494 EGLBoolean eglQueryStreamKHR(EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, in eglQueryStreamKHR() argument
499 return cnx->platform.eglQueryStreamKHR(dpy, stream, attribute, value); in eglQueryStreamKHR()
502 EGLBoolean eglQueryStreamu64KHR(EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, in eglQueryStreamu64KHR() argument
507 return cnx->platform.eglQueryStreamu64KHR(dpy, stream, attribute, value); in eglQueryStreamu64KHR()
510 EGLBoolean eglQueryStreamTimeKHR(EGLDisplay dpy, EGLStreamKHR stream, EGLenum attribute, in eglQueryStreamTimeKHR() argument
515 return cnx->platform.eglQueryStreamTimeKHR(dpy, stream, attribute, value); in eglQueryStreamTimeKHR()
518 EGLSurface eglCreateStreamProducerSurfaceKHR(EGLDisplay dpy, EGLConfig config, EGLStreamKHR stream, in eglCreateStreamProducerSurfaceKHR() argument
523 return cnx->platform.eglCreateStreamProducerSurfaceKHR(dpy, config, stream, attrib_list); in eglCreateStreamProducerSurfaceKHR()
526 EGLBoolean eglStreamConsumerGLTextureExternalKHR(EGLDisplay dpy, EGLStreamKHR stream) { in eglStreamConsumerGLTextureExternalKHR() argument
530 return cnx->platform.eglStreamConsumerGLTextureExternalKHR(dpy, stream); in eglStreamConsumerGLTextureExternalKHR()
533 EGLBoolean eglStreamConsumerAcquireKHR(EGLDisplay dpy, EGLStreamKHR stream) { in eglStreamConsumerAcquireKHR() argument
537 return cnx->platform.eglStreamConsumerAcquireKHR(dpy, stream); in eglStreamConsumerAcquireKHR()
540 EGLBoolean eglStreamConsumerReleaseKHR(EGLDisplay dpy, EGLStreamKHR stream) { in eglStreamConsumerReleaseKHR() argument
544 return cnx->platform.eglStreamConsumerReleaseKHR(dpy, stream); in eglStreamConsumerReleaseKHR()
547 EGLNativeFileDescriptorKHR eglGetStreamFileDescriptorKHR(EGLDisplay dpy, EGLStreamKHR stream) { in eglGetStreamFileDescriptorKHR() argument
551 return cnx->platform.eglGetStreamFileDescriptorKHR(dpy, stream); in eglGetStreamFileDescriptorKHR()
554 EGLStreamKHR eglCreateStreamFromFileDescriptorKHR(EGLDisplay dpy, in eglCreateStreamFromFileDescriptorKHR() argument
559 return cnx->platform.eglCreateStreamFromFileDescriptorKHR(dpy, file_descriptor); in eglCreateStreamFromFileDescriptorKHR()
562 EGLint eglWaitSyncKHR(EGLDisplay dpy, EGLSyncKHR sync, EGLint flags) { in eglWaitSyncKHR() argument
565 return cnx->platform.eglWaitSyncKHR(dpy, sync, flags); in eglWaitSyncKHR()
568 EGLBoolean eglWaitSync(EGLDisplay dpy, EGLSync sync, EGLint flags) { in eglWaitSync() argument
571 return cnx->platform.eglWaitSync(dpy, sync, flags); in eglWaitSync()
574 EGLint eglDupNativeFenceFDANDROID(EGLDisplay dpy, EGLSyncKHR sync) { in eglDupNativeFenceFDANDROID() argument
578 return cnx->platform.eglDupNativeFenceFDANDROID(dpy, sync); in eglDupNativeFenceFDANDROID()
581 EGLBoolean eglPresentationTimeANDROID(EGLDisplay dpy, EGLSurface surface, EGLnsecsANDROID time) { in eglPresentationTimeANDROID() argument
585 return cnx->platform.eglPresentationTimeANDROID(dpy, surface, time); in eglPresentationTimeANDROID()
614 EGLBoolean eglSetDamageRegionKHR(EGLDisplay dpy, EGLSurface surface, EGLint* rects, in eglSetDamageRegionKHR() argument
619 return cnx->platform.eglSetDamageRegionKHR(dpy, surface, rects, n_rects); in eglSetDamageRegionKHR()
622 EGLBoolean eglGetNextFrameIdANDROID(EGLDisplay dpy, EGLSurface surface, EGLuint64KHR* frameId) { in eglGetNextFrameIdANDROID() argument
626 return cnx->platform.eglGetNextFrameIdANDROID(dpy, surface, frameId); in eglGetNextFrameIdANDROID()
629 EGLBoolean eglGetCompositorTimingANDROID(EGLDisplay dpy, EGLSurface surface, EGLint numTimestamps, in eglGetCompositorTimingANDROID() argument
634 return cnx->platform.eglGetCompositorTimingANDROID(dpy, surface, numTimestamps, names, values); in eglGetCompositorTimingANDROID()
637 EGLBoolean eglGetCompositorTimingSupportedANDROID(EGLDisplay dpy, EGLSurface surface, EGLint name) { in eglGetCompositorTimingSupportedANDROID() argument
641 return cnx->platform.eglGetCompositorTimingSupportedANDROID(dpy, surface, name); in eglGetCompositorTimingSupportedANDROID()
644 EGLBoolean eglGetFrameTimestampsANDROID(EGLDisplay dpy, EGLSurface surface, EGLuint64KHR frameId, in eglGetFrameTimestampsANDROID() argument
650 return cnx->platform.eglGetFrameTimestampsANDROID(dpy, surface, frameId, numTimestamps, in eglGetFrameTimestampsANDROID()
654 EGLBoolean eglGetFrameTimestampSupportedANDROID(EGLDisplay dpy, EGLSurface surface, in eglGetFrameTimestampSupportedANDROID() argument
659 return cnx->platform.eglGetFrameTimestampSupportedANDROID(dpy, surface, timestamp); in eglGetFrameTimestampSupportedANDROID()