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()
249 egl_connection_t* const cnx = &gEGLImpl; in eglGetProcAddress() local
250 return cnx->platform.eglGetProcAddress(procname); in eglGetProcAddress()
258 egl_connection_t* const cnx = &gEGLImpl; in eglSwapBuffersWithDamageKHR() local
259 return cnx->platform.eglSwapBuffersWithDamageKHR(dpy, draw, rects, n_rects); in eglSwapBuffersWithDamageKHR()
266 egl_connection_t* const cnx = &gEGLImpl; in eglSwapBuffers() local
267 return cnx->platform.eglSwapBuffers(dpy, surface); in eglSwapBuffers()
273 egl_connection_t* const cnx = &gEGLImpl; in eglCopyBuffers() local
274 return cnx->platform.eglCopyBuffers(dpy, surface, target); in eglCopyBuffers()
280 egl_connection_t* const cnx = &gEGLImpl; in eglQueryString() local
281 return cnx->platform.eglQueryString(dpy, name); in eglQueryString()
287 egl_connection_t* const cnx = &gEGLImpl; in eglQueryStringImplementationANDROID() local
288 return cnx->platform.eglQueryStringImplementationANDROID(dpy, name); in eglQueryStringImplementationANDROID()
294 egl_connection_t* const cnx = &gEGLImpl; in eglSurfaceAttrib() local
295 return cnx->platform.eglSurfaceAttrib(dpy, surface, attribute, value); in eglSurfaceAttrib()
301 egl_connection_t* const cnx = &gEGLImpl; in eglBindTexImage() local
302 return cnx->platform.eglBindTexImage(dpy, surface, buffer); in eglBindTexImage()
308 egl_connection_t* const cnx = &gEGLImpl; in eglReleaseTexImage() local
309 return cnx->platform.eglReleaseTexImage(dpy, surface, buffer); in eglReleaseTexImage()
315 egl_connection_t* const cnx = &gEGLImpl; in eglSwapInterval() local
316 return cnx->platform.eglSwapInterval(dpy, interval); in eglSwapInterval()
322 egl_connection_t* const cnx = &gEGLImpl; in eglWaitClient() local
323 return cnx->platform.eglWaitClient(); in eglWaitClient()
333 egl_connection_t* const cnx = &gEGLImpl; in eglBindAPI() local
334 return cnx->platform.eglBindAPI(api); in eglBindAPI()
344 egl_connection_t* const cnx = &gEGLImpl; in eglQueryAPI() local
345 return cnx->platform.eglQueryAPI(); in eglQueryAPI()
351 egl_connection_t* const cnx = &gEGLImpl; in eglReleaseThread() local
352 return cnx->platform.eglReleaseThread(); in eglReleaseThread()
359 egl_connection_t* const cnx = &gEGLImpl; in eglCreatePbufferFromClientBuffer() local
360 return cnx->platform.eglCreatePbufferFromClientBuffer(dpy, buftype, buffer, config, in eglCreatePbufferFromClientBuffer()
367 egl_connection_t* const cnx = &gEGLImpl; in eglLockSurfaceKHR() local
368 return cnx->platform.eglLockSurfaceKHR(dpy, surface, attrib_list); in eglLockSurfaceKHR()
374 egl_connection_t* const cnx = &gEGLImpl; in eglUnlockSurfaceKHR() local
375 return cnx->platform.eglUnlockSurfaceKHR(dpy, surface); in eglUnlockSurfaceKHR()
382 egl_connection_t* const cnx = &gEGLImpl; in eglCreateImageKHR() local
383 return cnx->platform.eglCreateImageKHR(dpy, ctx, target, buffer, attrib_list); in eglCreateImageKHR()
390 egl_connection_t* const cnx = &gEGLImpl; in eglCreateImage() local
391 return cnx->platform.eglCreateImage(dpy, ctx, target, buffer, attrib_list); in eglCreateImage()
397 egl_connection_t* const cnx = &gEGLImpl; in eglDestroyImageKHR() local
398 return cnx->platform.eglDestroyImageKHR(dpy, img); in eglDestroyImageKHR()
404 egl_connection_t* const cnx = &gEGLImpl; in eglDestroyImage() local
405 return cnx->platform.eglDestroyImage(dpy, img); in eglDestroyImage()
415 egl_connection_t* const cnx = &gEGLImpl; in eglCreateSync() local
416 return cnx->platform.eglCreateSync(dpy, type, attrib_list); in eglCreateSync()
422 egl_connection_t* const cnx = &gEGLImpl; in eglCreateSyncKHR() local
423 return cnx->platform.eglCreateSyncKHR(dpy, type, attrib_list); in eglCreateSyncKHR()
429 egl_connection_t* const cnx = &gEGLImpl; in eglDestroySync() local
430 return cnx->platform.eglDestroySync(dpy, sync); in eglDestroySync()
436 egl_connection_t* const cnx = &gEGLImpl; in eglDestroySyncKHR() local
437 return cnx->platform.eglDestroySyncKHR(dpy, sync); in eglDestroySyncKHR()
443 egl_connection_t* const cnx = &gEGLImpl; in eglSignalSyncKHR() local
444 return cnx->platform.eglSignalSyncKHR(dpy, sync, mode); in eglSignalSyncKHR()
450 egl_connection_t* const cnx = &gEGLImpl; in eglClientWaitSync() local
451 return cnx->platform.eglClientWaitSyncKHR(dpy, sync, flags, timeout); in eglClientWaitSync()
457 egl_connection_t* const cnx = &gEGLImpl; in eglClientWaitSyncKHR() local
458 return cnx->platform.eglClientWaitSyncKHR(dpy, sync, flags, timeout); in eglClientWaitSyncKHR()
464 egl_connection_t* const cnx = &gEGLImpl; in eglGetSyncAttrib() local
465 return cnx->platform.eglGetSyncAttrib(dpy, sync, attribute, value); in eglGetSyncAttrib()
471 egl_connection_t* const cnx = &gEGLImpl; in eglGetSyncAttribKHR() local
472 return cnx->platform.eglGetSyncAttribKHR(dpy, sync, attribute, value); in eglGetSyncAttribKHR()
478 egl_connection_t* const cnx = &gEGLImpl; in eglCreateStreamKHR() local
479 return cnx->platform.eglCreateStreamKHR(dpy, attrib_list); in eglCreateStreamKHR()
485 egl_connection_t* const cnx = &gEGLImpl; in eglDestroyStreamKHR() local
486 return cnx->platform.eglDestroyStreamKHR(dpy, stream); in eglDestroyStreamKHR()
493 egl_connection_t* const cnx = &gEGLImpl; in eglStreamAttribKHR() local
494 return cnx->platform.eglStreamAttribKHR(dpy, stream, attribute, value); in eglStreamAttribKHR()
501 egl_connection_t* const cnx = &gEGLImpl; in eglQueryStreamKHR() local
502 return cnx->platform.eglQueryStreamKHR(dpy, stream, attribute, value); in eglQueryStreamKHR()
509 egl_connection_t* const cnx = &gEGLImpl; in eglQueryStreamu64KHR() local
510 return cnx->platform.eglQueryStreamu64KHR(dpy, stream, attribute, value); in eglQueryStreamu64KHR()
517 egl_connection_t* const cnx = &gEGLImpl; in eglQueryStreamTimeKHR() local
518 return cnx->platform.eglQueryStreamTimeKHR(dpy, stream, attribute, value); in eglQueryStreamTimeKHR()
525 egl_connection_t* const cnx = &gEGLImpl; in eglCreateStreamProducerSurfaceKHR() local
526 return cnx->platform.eglCreateStreamProducerSurfaceKHR(dpy, config, stream, attrib_list); in eglCreateStreamProducerSurfaceKHR()
532 egl_connection_t* const cnx = &gEGLImpl; in eglStreamConsumerGLTextureExternalKHR() local
533 return cnx->platform.eglStreamConsumerGLTextureExternalKHR(dpy, stream); in eglStreamConsumerGLTextureExternalKHR()
539 egl_connection_t* const cnx = &gEGLImpl; in eglStreamConsumerAcquireKHR() local
540 return cnx->platform.eglStreamConsumerAcquireKHR(dpy, stream); in eglStreamConsumerAcquireKHR()
546 egl_connection_t* const cnx = &gEGLImpl; in eglStreamConsumerReleaseKHR() local
547 return cnx->platform.eglStreamConsumerReleaseKHR(dpy, stream); in eglStreamConsumerReleaseKHR()
553 egl_connection_t* const cnx = &gEGLImpl; in eglGetStreamFileDescriptorKHR() local
554 return cnx->platform.eglGetStreamFileDescriptorKHR(dpy, stream); in eglGetStreamFileDescriptorKHR()
561 egl_connection_t* const cnx = &gEGLImpl; in eglCreateStreamFromFileDescriptorKHR() local
562 return cnx->platform.eglCreateStreamFromFileDescriptorKHR(dpy, file_descriptor); in eglCreateStreamFromFileDescriptorKHR()
567 egl_connection_t* const cnx = &gEGLImpl; in eglWaitSyncKHR() local
568 return cnx->platform.eglWaitSyncKHR(dpy, sync, flags); in eglWaitSyncKHR()
573 egl_connection_t* const cnx = &gEGLImpl; in eglWaitSync() local
574 return cnx->platform.eglWaitSync(dpy, sync, flags); in eglWaitSync()
580 egl_connection_t* const cnx = &gEGLImpl; in eglDupNativeFenceFDANDROID() local
581 return cnx->platform.eglDupNativeFenceFDANDROID(dpy, sync); in eglDupNativeFenceFDANDROID()
587 egl_connection_t* const cnx = &gEGLImpl; in eglPresentationTimeANDROID() local
588 return cnx->platform.eglPresentationTimeANDROID(dpy, surface, time); in eglPresentationTimeANDROID()
593 egl_connection_t* const cnx = &gEGLImpl; in eglGetNativeClientBufferANDROID() local
594 return cnx->platform.eglGetNativeClientBufferANDROID(buffer); in eglGetNativeClientBufferANDROID()
604 egl_connection_t* const cnx = &gEGLImpl; in eglGetSystemTimeFrequencyNV() local
605 return cnx->platform.eglGetSystemTimeFrequencyNV(); in eglGetSystemTimeFrequencyNV()
615 egl_connection_t* const cnx = &gEGLImpl; in eglGetSystemTimeNV() local
616 return cnx->platform.eglGetSystemTimeNV(); in eglGetSystemTimeNV()
623 egl_connection_t* const cnx = &gEGLImpl; in eglSetDamageRegionKHR() local
624 return cnx->platform.eglSetDamageRegionKHR(dpy, surface, rects, n_rects); in eglSetDamageRegionKHR()
630 egl_connection_t* const cnx = &gEGLImpl; in eglGetNextFrameIdANDROID() local
631 return cnx->platform.eglGetNextFrameIdANDROID(dpy, surface, frameId); in eglGetNextFrameIdANDROID()
638 egl_connection_t* const cnx = &gEGLImpl; in eglGetCompositorTimingANDROID() local
639 return cnx->platform.eglGetCompositorTimingANDROID(dpy, surface, numTimestamps, names, values); in eglGetCompositorTimingANDROID()
645 egl_connection_t* const cnx = &gEGLImpl; in eglGetCompositorTimingSupportedANDROID() local
646 return cnx->platform.eglGetCompositorTimingSupportedANDROID(dpy, surface, name); in eglGetCompositorTimingSupportedANDROID()
654 egl_connection_t* const cnx = &gEGLImpl; in eglGetFrameTimestampsANDROID() local
655 return cnx->platform.eglGetFrameTimestampsANDROID(dpy, surface, frameId, numTimestamps, in eglGetFrameTimestampsANDROID()
663 egl_connection_t* const cnx = &gEGLImpl; in eglGetFrameTimestampSupportedANDROID() local
664 return cnx->platform.eglGetFrameTimestampSupportedANDROID(dpy, surface, timestamp); in eglGetFrameTimestampSupportedANDROID()