Lines Matching refs:cnx

51     egl_connection_t* const cnx = &gEGLImpl;  in eglGetDisplay()  local
52 return cnx->platform.eglGetDisplay(display); in eglGetDisplay()
66 egl_connection_t* const cnx = &gEGLImpl; in eglGetPlatformDisplay() local
67 return cnx->platform.eglGetPlatformDisplay(platform, display, attrib_list); in eglGetPlatformDisplay()
73 egl_connection_t* const cnx = &gEGLImpl; in eglInitialize() local
74 return cnx->platform.eglInitialize(dpy, major, minor); in eglInitialize()
80 egl_connection_t* const cnx = &gEGLImpl; in eglTerminate() local
81 return cnx->platform.eglTerminate(dpy); in eglTerminate()
88 egl_connection_t* const cnx = &gEGLImpl; in eglGetConfigs() local
89 return cnx->platform.eglGetConfigs(dpy, configs, config_size, num_config); in eglGetConfigs()
96 egl_connection_t* const cnx = &gEGLImpl; in eglChooseConfig() local
97 return cnx->platform.eglChooseConfig(dpy, attrib_list, configs, config_size, num_config); in eglChooseConfig()
103 egl_connection_t* const cnx = &gEGLImpl; in eglGetConfigAttrib() local
104 return cnx->platform.eglGetConfigAttrib(dpy, config, attribute, value); in eglGetConfigAttrib()
111 egl_connection_t* const cnx = &gEGLImpl; in eglCreateWindowSurface() local
112 return cnx->platform.eglCreateWindowSurface(dpy, config, window, attrib_list); in eglCreateWindowSurface()
119 egl_connection_t* const cnx = &gEGLImpl; in eglCreatePlatformWindowSurface() local
120 return cnx->platform.eglCreatePlatformWindowSurface(dpy, config, native_window, attrib_list); in eglCreatePlatformWindowSurface()
127 egl_connection_t* const cnx = &gEGLImpl; in eglCreatePixmapSurface() local
128 return cnx->platform.eglCreatePixmapSurface(dpy, config, pixmap, attrib_list); in eglCreatePixmapSurface()
135 egl_connection_t* const cnx = &gEGLImpl; in eglCreatePlatformPixmapSurface() local
136 return cnx->platform.eglCreatePlatformPixmapSurface(dpy, config, native_pixmap, attrib_list); in eglCreatePlatformPixmapSurface()
142 egl_connection_t* const cnx = &gEGLImpl; in eglCreatePbufferSurface() local
143 return cnx->platform.eglCreatePbufferSurface(dpy, config, attrib_list); in eglCreatePbufferSurface()
149 egl_connection_t* const cnx = &gEGLImpl; in eglDestroySurface() local
150 return cnx->platform.eglDestroySurface(dpy, surface); in eglDestroySurface()
156 egl_connection_t* const cnx = &gEGLImpl; in eglQuerySurface() local
157 return cnx->platform.eglQuerySurface(dpy, surface, attribute, value); in eglQuerySurface()
164 egl_connection_t* const cnx = &gEGLImpl; in eglBeginFrame() local
165 cnx->platform.eglBeginFrame(dpy, surface); in eglBeginFrame()
172 egl_connection_t* const cnx = &gEGLImpl; in eglCreateContext() local
173 return cnx->platform.eglCreateContext(dpy, config, share_list, attrib_list); in eglCreateContext()
179 egl_connection_t* const cnx = &gEGLImpl; in eglDestroyContext() local
180 return cnx->platform.eglDestroyContext(dpy, ctx); in eglDestroyContext()
186 egl_connection_t* const cnx = &gEGLImpl; in eglMakeCurrent() local
187 return cnx->platform.eglMakeCurrent(dpy, draw, read, ctx); in eglMakeCurrent()
193 egl_connection_t* const cnx = &gEGLImpl; in eglQueryContext() local
194 return cnx->platform.eglQueryContext(dpy, ctx, attribute, value); in eglQueryContext()
200 egl_connection_t* const cnx = &gEGLImpl; in eglGetCurrentContext() local
201 return cnx->platform.eglGetCurrentContext(); in eglGetCurrentContext()
207 egl_connection_t* const cnx = &gEGLImpl; in eglGetCurrentSurface() local
208 return cnx->platform.eglGetCurrentSurface(readdraw); in eglGetCurrentSurface()
214 egl_connection_t* const cnx = &gEGLImpl; in eglGetCurrentDisplay() local
215 return cnx->platform.eglGetCurrentDisplay(); in eglGetCurrentDisplay()
221 egl_connection_t* const cnx = &gEGLImpl; in eglWaitGL() local
222 return cnx->platform.eglWaitGL(); in eglWaitGL()
228 egl_connection_t* const cnx = &gEGLImpl; in eglWaitNative() local
229 return cnx->platform.eglWaitNative(engine); in eglWaitNative()
233 egl_connection_t* const cnx = &gEGLImpl; in eglGetError() local
234 return cnx->platform.eglGetError(); in eglGetError()
248 egl_connection_t* const cnx = &gEGLImpl; in eglGetProcAddress() local
249 return cnx->platform.eglGetProcAddress(procname); in eglGetProcAddress()
257 egl_connection_t* const cnx = &gEGLImpl; in eglSwapBuffersWithDamageKHR() local
258 return cnx->platform.eglSwapBuffersWithDamageKHR(dpy, draw, rects, n_rects); in eglSwapBuffersWithDamageKHR()
265 egl_connection_t* const cnx = &gEGLImpl; in eglSwapBuffers() local
266 return cnx->platform.eglSwapBuffers(dpy, surface); in eglSwapBuffers()
272 egl_connection_t* const cnx = &gEGLImpl; in eglCopyBuffers() local
273 return cnx->platform.eglCopyBuffers(dpy, surface, target); in eglCopyBuffers()
279 egl_connection_t* const cnx = &gEGLImpl; in eglQueryString() local
280 return cnx->platform.eglQueryString(dpy, name); in eglQueryString()
286 egl_connection_t* const cnx = &gEGLImpl; in eglQueryStringImplementationANDROID() local
287 return cnx->platform.eglQueryStringImplementationANDROID(dpy, name); in eglQueryStringImplementationANDROID()
293 egl_connection_t* const cnx = &gEGLImpl; in eglSurfaceAttrib() local
294 return cnx->platform.eglSurfaceAttrib(dpy, surface, attribute, value); in eglSurfaceAttrib()
300 egl_connection_t* const cnx = &gEGLImpl; in eglBindTexImage() local
301 return cnx->platform.eglBindTexImage(dpy, surface, buffer); in eglBindTexImage()
307 egl_connection_t* const cnx = &gEGLImpl; in eglReleaseTexImage() local
308 return cnx->platform.eglReleaseTexImage(dpy, surface, buffer); in eglReleaseTexImage()
314 egl_connection_t* const cnx = &gEGLImpl; in eglSwapInterval() local
315 return cnx->platform.eglSwapInterval(dpy, interval); in eglSwapInterval()
321 egl_connection_t* const cnx = &gEGLImpl; in eglWaitClient() local
322 return cnx->platform.eglWaitClient(); in eglWaitClient()
331 egl_connection_t* const cnx = &gEGLImpl; in eglBindAPI() local
332 return cnx->platform.eglBindAPI(api); in eglBindAPI()
341 egl_connection_t* const cnx = &gEGLImpl; in eglQueryAPI() local
342 return cnx->platform.eglQueryAPI(); in eglQueryAPI()
348 egl_connection_t* const cnx = &gEGLImpl; in eglReleaseThread() local
349 return cnx->platform.eglReleaseThread(); in eglReleaseThread()
356 egl_connection_t* const cnx = &gEGLImpl; in eglCreatePbufferFromClientBuffer() local
357 return cnx->platform.eglCreatePbufferFromClientBuffer(dpy, buftype, buffer, config, in eglCreatePbufferFromClientBuffer()
364 egl_connection_t* const cnx = &gEGLImpl; in eglLockSurfaceKHR() local
365 return cnx->platform.eglLockSurfaceKHR(dpy, surface, attrib_list); in eglLockSurfaceKHR()
371 egl_connection_t* const cnx = &gEGLImpl; in eglUnlockSurfaceKHR() local
372 return cnx->platform.eglUnlockSurfaceKHR(dpy, surface); in eglUnlockSurfaceKHR()
379 egl_connection_t* const cnx = &gEGLImpl; in eglCreateImageKHR() local
380 return cnx->platform.eglCreateImageKHR(dpy, ctx, target, buffer, attrib_list); in eglCreateImageKHR()
387 egl_connection_t* const cnx = &gEGLImpl; in eglCreateImage() local
388 return cnx->platform.eglCreateImage(dpy, ctx, target, buffer, attrib_list); in eglCreateImage()
394 egl_connection_t* const cnx = &gEGLImpl; in eglDestroyImageKHR() local
395 return cnx->platform.eglDestroyImageKHR(dpy, img); in eglDestroyImageKHR()
401 egl_connection_t* const cnx = &gEGLImpl; in eglDestroyImage() local
402 return cnx->platform.eglDestroyImage(dpy, img); in eglDestroyImage()
412 egl_connection_t* const cnx = &gEGLImpl; in eglCreateSync() local
413 return cnx->platform.eglCreateSync(dpy, type, attrib_list); in eglCreateSync()
419 egl_connection_t* const cnx = &gEGLImpl; in eglCreateSyncKHR() local
420 return cnx->platform.eglCreateSyncKHR(dpy, type, attrib_list); in eglCreateSyncKHR()
426 egl_connection_t* const cnx = &gEGLImpl; in eglDestroySync() local
427 return cnx->platform.eglDestroySync(dpy, sync); in eglDestroySync()
433 egl_connection_t* const cnx = &gEGLImpl; in eglDestroySyncKHR() local
434 return cnx->platform.eglDestroySyncKHR(dpy, sync); in eglDestroySyncKHR()
440 egl_connection_t* const cnx = &gEGLImpl; in eglSignalSyncKHR() local
441 return cnx->platform.eglSignalSyncKHR(dpy, sync, mode); in eglSignalSyncKHR()
447 egl_connection_t* const cnx = &gEGLImpl; in eglClientWaitSync() local
448 return cnx->platform.eglClientWaitSyncKHR(dpy, sync, flags, timeout); in eglClientWaitSync()
454 egl_connection_t* const cnx = &gEGLImpl; in eglClientWaitSyncKHR() local
455 return cnx->platform.eglClientWaitSyncKHR(dpy, sync, flags, timeout); in eglClientWaitSyncKHR()
461 egl_connection_t* const cnx = &gEGLImpl; in eglGetSyncAttrib() local
462 return cnx->platform.eglGetSyncAttrib(dpy, sync, attribute, value); in eglGetSyncAttrib()
468 egl_connection_t* const cnx = &gEGLImpl; in eglGetSyncAttribKHR() local
469 return cnx->platform.eglGetSyncAttribKHR(dpy, sync, attribute, value); in eglGetSyncAttribKHR()
475 egl_connection_t* const cnx = &gEGLImpl; in eglCreateStreamKHR() local
476 return cnx->platform.eglCreateStreamKHR(dpy, attrib_list); in eglCreateStreamKHR()
482 egl_connection_t* const cnx = &gEGLImpl; in eglDestroyStreamKHR() local
483 return cnx->platform.eglDestroyStreamKHR(dpy, stream); in eglDestroyStreamKHR()
490 egl_connection_t* const cnx = &gEGLImpl; in eglStreamAttribKHR() local
491 return cnx->platform.eglStreamAttribKHR(dpy, stream, attribute, value); in eglStreamAttribKHR()
498 egl_connection_t* const cnx = &gEGLImpl; in eglQueryStreamKHR() local
499 return cnx->platform.eglQueryStreamKHR(dpy, stream, attribute, value); in eglQueryStreamKHR()
506 egl_connection_t* const cnx = &gEGLImpl; in eglQueryStreamu64KHR() local
507 return cnx->platform.eglQueryStreamu64KHR(dpy, stream, attribute, value); in eglQueryStreamu64KHR()
514 egl_connection_t* const cnx = &gEGLImpl; in eglQueryStreamTimeKHR() local
515 return cnx->platform.eglQueryStreamTimeKHR(dpy, stream, attribute, value); in eglQueryStreamTimeKHR()
522 egl_connection_t* const cnx = &gEGLImpl; in eglCreateStreamProducerSurfaceKHR() local
523 return cnx->platform.eglCreateStreamProducerSurfaceKHR(dpy, config, stream, attrib_list); in eglCreateStreamProducerSurfaceKHR()
529 egl_connection_t* const cnx = &gEGLImpl; in eglStreamConsumerGLTextureExternalKHR() local
530 return cnx->platform.eglStreamConsumerGLTextureExternalKHR(dpy, stream); in eglStreamConsumerGLTextureExternalKHR()
536 egl_connection_t* const cnx = &gEGLImpl; in eglStreamConsumerAcquireKHR() local
537 return cnx->platform.eglStreamConsumerAcquireKHR(dpy, stream); in eglStreamConsumerAcquireKHR()
543 egl_connection_t* const cnx = &gEGLImpl; in eglStreamConsumerReleaseKHR() local
544 return cnx->platform.eglStreamConsumerReleaseKHR(dpy, stream); in eglStreamConsumerReleaseKHR()
550 egl_connection_t* const cnx = &gEGLImpl; in eglGetStreamFileDescriptorKHR() local
551 return cnx->platform.eglGetStreamFileDescriptorKHR(dpy, stream); in eglGetStreamFileDescriptorKHR()
558 egl_connection_t* const cnx = &gEGLImpl; in eglCreateStreamFromFileDescriptorKHR() local
559 return cnx->platform.eglCreateStreamFromFileDescriptorKHR(dpy, file_descriptor); in eglCreateStreamFromFileDescriptorKHR()
564 egl_connection_t* const cnx = &gEGLImpl; in eglWaitSyncKHR() local
565 return cnx->platform.eglWaitSyncKHR(dpy, sync, flags); in eglWaitSyncKHR()
570 egl_connection_t* const cnx = &gEGLImpl; in eglWaitSync() local
571 return cnx->platform.eglWaitSync(dpy, sync, flags); in eglWaitSync()
577 egl_connection_t* const cnx = &gEGLImpl; in eglDupNativeFenceFDANDROID() local
578 return cnx->platform.eglDupNativeFenceFDANDROID(dpy, sync); in eglDupNativeFenceFDANDROID()
584 egl_connection_t* const cnx = &gEGLImpl; in eglPresentationTimeANDROID() local
585 return cnx->platform.eglPresentationTimeANDROID(dpy, surface, time); in eglPresentationTimeANDROID()
590 egl_connection_t* const cnx = &gEGLImpl; in eglGetNativeClientBufferANDROID() local
591 return cnx->platform.eglGetNativeClientBufferANDROID(buffer); in eglGetNativeClientBufferANDROID()
600 egl_connection_t* const cnx = &gEGLImpl; in eglGetSystemTimeFrequencyNV() local
601 return cnx->platform.eglGetSystemTimeFrequencyNV(); in eglGetSystemTimeFrequencyNV()
610 egl_connection_t* const cnx = &gEGLImpl; in eglGetSystemTimeNV() local
611 return cnx->platform.eglGetSystemTimeNV(); in eglGetSystemTimeNV()
618 egl_connection_t* const cnx = &gEGLImpl; in eglSetDamageRegionKHR() local
619 return cnx->platform.eglSetDamageRegionKHR(dpy, surface, rects, n_rects); in eglSetDamageRegionKHR()
625 egl_connection_t* const cnx = &gEGLImpl; in eglGetNextFrameIdANDROID() local
626 return cnx->platform.eglGetNextFrameIdANDROID(dpy, surface, frameId); in eglGetNextFrameIdANDROID()
633 egl_connection_t* const cnx = &gEGLImpl; in eglGetCompositorTimingANDROID() local
634 return cnx->platform.eglGetCompositorTimingANDROID(dpy, surface, numTimestamps, names, values); in eglGetCompositorTimingANDROID()
640 egl_connection_t* const cnx = &gEGLImpl; in eglGetCompositorTimingSupportedANDROID() local
641 return cnx->platform.eglGetCompositorTimingSupportedANDROID(dpy, surface, name); in eglGetCompositorTimingSupportedANDROID()
649 egl_connection_t* const cnx = &gEGLImpl; in eglGetFrameTimestampsANDROID() local
650 return cnx->platform.eglGetFrameTimestampsANDROID(dpy, surface, frameId, numTimestamps, in eglGetFrameTimestampsANDROID()
658 egl_connection_t* const cnx = &gEGLImpl; in eglGetFrameTimestampSupportedANDROID() local
659 return cnx->platform.eglGetFrameTimestampSupportedANDROID(dpy, surface, timestamp); in eglGetFrameTimestampSupportedANDROID()