Lines Matching refs:dpy
61 EGLBoolean EGLAPIENTRY eglChooseConfig(EGLDisplay dpy, in eglChooseConfig() argument
68 return EGL_ChooseConfig(dpy, attrib_list, configs, config_size, num_config); in eglChooseConfig()
71 EGLBoolean EGLAPIENTRY eglCopyBuffers(EGLDisplay dpy, in eglCopyBuffers() argument
76 return EGL_CopyBuffers(dpy, surface, target); in eglCopyBuffers()
79 EGLContext EGLAPIENTRY eglCreateContext(EGLDisplay dpy, in eglCreateContext() argument
85 return EGL_CreateContext(dpy, config, share_context, attrib_list); in eglCreateContext()
88 EGLSurface EGLAPIENTRY eglCreatePbufferSurface(EGLDisplay dpy, in eglCreatePbufferSurface() argument
93 return EGL_CreatePbufferSurface(dpy, config, attrib_list); in eglCreatePbufferSurface()
96 EGLSurface EGLAPIENTRY eglCreatePixmapSurface(EGLDisplay dpy, in eglCreatePixmapSurface() argument
102 return EGL_CreatePixmapSurface(dpy, config, pixmap, attrib_list); in eglCreatePixmapSurface()
105 EGLSurface EGLAPIENTRY eglCreateWindowSurface(EGLDisplay dpy, in eglCreateWindowSurface() argument
111 return EGL_CreateWindowSurface(dpy, config, win, attrib_list); in eglCreateWindowSurface()
114 EGLBoolean EGLAPIENTRY eglDestroyContext(EGLDisplay dpy, EGLContext ctx) in eglDestroyContext() argument
117 return EGL_DestroyContext(dpy, ctx); in eglDestroyContext()
120 EGLBoolean EGLAPIENTRY eglDestroySurface(EGLDisplay dpy, EGLSurface surface) in eglDestroySurface() argument
123 return EGL_DestroySurface(dpy, surface); in eglDestroySurface()
126 EGLBoolean EGLAPIENTRY eglGetConfigAttrib(EGLDisplay dpy, in eglGetConfigAttrib() argument
132 return EGL_GetConfigAttrib(dpy, config, attribute, value); in eglGetConfigAttrib()
135 EGLBoolean EGLAPIENTRY eglGetConfigs(EGLDisplay dpy, in eglGetConfigs() argument
141 return EGL_GetConfigs(dpy, configs, config_size, num_config); in eglGetConfigs()
168 EGLBoolean EGLAPIENTRY eglInitialize(EGLDisplay dpy, EGLint *major, EGLint *minor) in eglInitialize() argument
171 return EGL_Initialize(dpy, major, minor); in eglInitialize()
174 EGLBoolean EGLAPIENTRY eglMakeCurrent(EGLDisplay dpy, in eglMakeCurrent() argument
180 return EGL_MakeCurrent(dpy, draw, read, ctx); in eglMakeCurrent()
183 EGLBoolean EGLAPIENTRY eglQueryContext(EGLDisplay dpy, in eglQueryContext() argument
189 return EGL_QueryContext(dpy, ctx, attribute, value); in eglQueryContext()
192 const char *EGLAPIENTRY eglQueryString(EGLDisplay dpy, EGLint name) in eglQueryString() argument
195 return EGL_QueryString(dpy, name); in eglQueryString()
198 EGLBoolean EGLAPIENTRY eglQuerySurface(EGLDisplay dpy, in eglQuerySurface() argument
204 return EGL_QuerySurface(dpy, surface, attribute, value); in eglQuerySurface()
207 EGLBoolean EGLAPIENTRY eglSwapBuffers(EGLDisplay dpy, EGLSurface surface) in eglSwapBuffers() argument
210 return EGL_SwapBuffers(dpy, surface); in eglSwapBuffers()
213 EGLBoolean EGLAPIENTRY eglTerminate(EGLDisplay dpy) in eglTerminate() argument
216 return EGL_Terminate(dpy); in eglTerminate()
231 EGLBoolean EGLAPIENTRY eglBindTexImage(EGLDisplay dpy, EGLSurface surface, EGLint buffer) in eglBindTexImage() argument
234 return EGL_BindTexImage(dpy, surface, buffer); in eglBindTexImage()
237 EGLBoolean EGLAPIENTRY eglReleaseTexImage(EGLDisplay dpy, EGLSurface surface, EGLint buffer) in eglReleaseTexImage() argument
240 return EGL_ReleaseTexImage(dpy, surface, buffer); in eglReleaseTexImage()
243 EGLBoolean EGLAPIENTRY eglSurfaceAttrib(EGLDisplay dpy, in eglSurfaceAttrib() argument
249 return EGL_SurfaceAttrib(dpy, surface, attribute, value); in eglSurfaceAttrib()
252 EGLBoolean EGLAPIENTRY eglSwapInterval(EGLDisplay dpy, EGLint interval) in eglSwapInterval() argument
255 return EGL_SwapInterval(dpy, interval); in eglSwapInterval()
270 EGLSurface EGLAPIENTRY eglCreatePbufferFromClientBuffer(EGLDisplay dpy, in eglCreatePbufferFromClientBuffer() argument
277 return EGL_CreatePbufferFromClientBuffer(dpy, buftype, buffer, config, attrib_list); in eglCreatePbufferFromClientBuffer()
298 EGLSync EGLAPIENTRY eglCreateSync(EGLDisplay dpy, EGLenum type, const EGLAttrib *attrib_list) in eglCreateSync() argument
301 return EGL_CreateSync(dpy, type, attrib_list); in eglCreateSync()
304 EGLBoolean EGLAPIENTRY eglDestroySync(EGLDisplay dpy, EGLSync sync) in eglDestroySync() argument
307 return EGL_DestroySync(dpy, sync); in eglDestroySync()
310 EGLint EGLAPIENTRY eglClientWaitSync(EGLDisplay dpy, EGLSync sync, EGLint flags, EGLTime timeout) in eglClientWaitSync() argument
313 return EGL_ClientWaitSync(dpy, sync, flags, timeout); in eglClientWaitSync()
316 EGLBoolean EGLAPIENTRY eglGetSyncAttrib(EGLDisplay dpy, in eglGetSyncAttrib() argument
322 return EGL_GetSyncAttrib(dpy, sync, attribute, value); in eglGetSyncAttrib()
325 EGLImage EGLAPIENTRY eglCreateImage(EGLDisplay dpy, in eglCreateImage() argument
332 return EGL_CreateImage(dpy, ctx, target, buffer, attrib_list); in eglCreateImage()
335 EGLBoolean EGLAPIENTRY eglDestroyImage(EGLDisplay dpy, EGLImage image) in eglDestroyImage() argument
338 return EGL_DestroyImage(dpy, image); in eglDestroyImage()
349 EGLSurface EGLAPIENTRY eglCreatePlatformWindowSurface(EGLDisplay dpy, in eglCreatePlatformWindowSurface() argument
355 return EGL_CreatePlatformWindowSurface(dpy, config, native_window, attrib_list); in eglCreatePlatformWindowSurface()
358 EGLSurface EGLAPIENTRY eglCreatePlatformPixmapSurface(EGLDisplay dpy, in eglCreatePlatformPixmapSurface() argument
364 return EGL_CreatePlatformPixmapSurface(dpy, config, native_pixmap, attrib_list); in eglCreatePlatformPixmapSurface()
367 EGLBoolean EGLAPIENTRY eglWaitSync(EGLDisplay dpy, EGLSync sync, EGLint flags) in eglWaitSync() argument
370 return EGL_WaitSync(dpy, sync, flags); in eglWaitSync()
373 EGLBoolean EGLAPIENTRY eglQuerySurfacePointerANGLE(EGLDisplay dpy, in eglQuerySurfacePointerANGLE() argument
379 return EGL_QuerySurfacePointerANGLE(dpy, surface, attribute, value); in eglQuerySurfacePointerANGLE()
382 EGLBoolean EGLAPIENTRY eglPostSubBufferNV(EGLDisplay dpy, in eglPostSubBufferNV() argument
390 return EGL_PostSubBufferNV(dpy, surface, x, y, width, height); in eglPostSubBufferNV()
401 EGLSurface EGLAPIENTRY eglCreatePlatformWindowSurfaceEXT(EGLDisplay dpy, in eglCreatePlatformWindowSurfaceEXT() argument
407 return EGL_CreatePlatformWindowSurfaceEXT(dpy, config, native_window, attrib_list); in eglCreatePlatformWindowSurfaceEXT()
410 EGLSurface EGLAPIENTRY eglCreatePlatformPixmapSurfaceEXT(EGLDisplay dpy, in eglCreatePlatformPixmapSurfaceEXT() argument
416 return EGL_CreatePlatformPixmapSurfaceEXT(dpy, config, native_pixmap, attrib_list); in eglCreatePlatformPixmapSurfaceEXT()
419 EGLBoolean EGLAPIENTRY eglQueryDisplayAttribEXT(EGLDisplay dpy, EGLint attribute, EGLAttrib *value) in eglQueryDisplayAttribEXT() argument
422 return EGL_QueryDisplayAttribEXT(dpy, attribute, value); in eglQueryDisplayAttribEXT()
425 EGLBoolean EGLAPIENTRY eglQueryDisplayAttribANGLE(EGLDisplay dpy, in eglQueryDisplayAttribANGLE() argument
430 return EGL_QueryDisplayAttribANGLE(dpy, attribute, value); in eglQueryDisplayAttribANGLE()
447 EGLImageKHR EGLAPIENTRY eglCreateImageKHR(EGLDisplay dpy, in eglCreateImageKHR() argument
454 return EGL_CreateImageKHR(dpy, ctx, target, buffer, attrib_list); in eglCreateImageKHR()
457 EGLBoolean EGLAPIENTRY eglDestroyImageKHR(EGLDisplay dpy, EGLImageKHR image) in eglDestroyImageKHR() argument
460 return EGL_DestroyImageKHR(dpy, image); in eglDestroyImageKHR()
483 EGLStreamKHR EGLAPIENTRY eglCreateStreamKHR(EGLDisplay dpy, const EGLint *attrib_list) in eglCreateStreamKHR() argument
486 return EGL_CreateStreamKHR(dpy, attrib_list); in eglCreateStreamKHR()
489 EGLBoolean EGLAPIENTRY eglDestroyStreamKHR(EGLDisplay dpy, EGLStreamKHR stream) in eglDestroyStreamKHR() argument
492 return EGL_DestroyStreamKHR(dpy, stream); in eglDestroyStreamKHR()
495 EGLBoolean EGLAPIENTRY eglStreamAttribKHR(EGLDisplay dpy, in eglStreamAttribKHR() argument
501 return EGL_StreamAttribKHR(dpy, stream, attribute, value); in eglStreamAttribKHR()
504 EGLBoolean EGLAPIENTRY eglQueryStreamKHR(EGLDisplay dpy, in eglQueryStreamKHR() argument
510 return EGL_QueryStreamKHR(dpy, stream, attribute, value); in eglQueryStreamKHR()
513 EGLBoolean EGLAPIENTRY eglQueryStreamu64KHR(EGLDisplay dpy, in eglQueryStreamu64KHR() argument
519 return EGL_QueryStreamu64KHR(dpy, stream, attribute, value); in eglQueryStreamu64KHR()
522 EGLBoolean EGLAPIENTRY eglStreamConsumerGLTextureExternalKHR(EGLDisplay dpy, EGLStreamKHR stream) in eglStreamConsumerGLTextureExternalKHR() argument
525 return EGL_StreamConsumerGLTextureExternalKHR(dpy, stream); in eglStreamConsumerGLTextureExternalKHR()
528 EGLBoolean EGLAPIENTRY eglStreamConsumerAcquireKHR(EGLDisplay dpy, EGLStreamKHR stream) in eglStreamConsumerAcquireKHR() argument
531 return EGL_StreamConsumerAcquireKHR(dpy, stream); in eglStreamConsumerAcquireKHR()
534 EGLBoolean EGLAPIENTRY eglStreamConsumerReleaseKHR(EGLDisplay dpy, EGLStreamKHR stream) in eglStreamConsumerReleaseKHR() argument
537 return EGL_StreamConsumerReleaseKHR(dpy, stream); in eglStreamConsumerReleaseKHR()
540 EGLBoolean EGLAPIENTRY eglStreamConsumerGLTextureExternalAttribsNV(EGLDisplay dpy, in eglStreamConsumerGLTextureExternalAttribsNV() argument
545 return EGL_StreamConsumerGLTextureExternalAttribsNV(dpy, stream, attrib_list); in eglStreamConsumerGLTextureExternalAttribsNV()
548 EGLBoolean EGLAPIENTRY eglCreateStreamProducerD3DTextureANGLE(EGLDisplay dpy, in eglCreateStreamProducerD3DTextureANGLE() argument
553 return EGL_CreateStreamProducerD3DTextureANGLE(dpy, stream, attrib_list); in eglCreateStreamProducerD3DTextureANGLE()
556 EGLBoolean EGLAPIENTRY eglStreamPostD3DTextureANGLE(EGLDisplay dpy, in eglStreamPostD3DTextureANGLE() argument
562 return EGL_StreamPostD3DTextureANGLE(dpy, stream, texture, attrib_list); in eglStreamPostD3DTextureANGLE()
565 EGLBoolean EGLAPIENTRY eglGetSyncValuesCHROMIUM(EGLDisplay dpy, in eglGetSyncValuesCHROMIUM() argument
572 return EGL_GetSyncValuesCHROMIUM(dpy, surface, ust, msc, sbc); in eglGetSyncValuesCHROMIUM()
575 EGLBoolean EGLAPIENTRY eglGetMscRateANGLE(EGLDisplay dpy, in eglGetMscRateANGLE() argument
581 return EGL_GetMscRateANGLE(dpy, surface, numerator, denominator); in eglGetMscRateANGLE()
584 EGLBoolean EGLAPIENTRY eglSwapBuffersWithDamageKHR(EGLDisplay dpy, in eglSwapBuffersWithDamageKHR() argument
590 return EGL_SwapBuffersWithDamageKHR(dpy, surface, rects, n_rects); in eglSwapBuffersWithDamageKHR()
593 EGLBoolean EGLAPIENTRY eglPresentationTimeANDROID(EGLDisplay dpy, in eglPresentationTimeANDROID() argument
598 return EGL_PresentationTimeANDROID(dpy, surface, time); in eglPresentationTimeANDROID()
601 EGLint EGLAPIENTRY eglProgramCacheGetAttribANGLE(EGLDisplay dpy, EGLenum attrib) in eglProgramCacheGetAttribANGLE() argument
604 return EGL_ProgramCacheGetAttribANGLE(dpy, attrib); in eglProgramCacheGetAttribANGLE()
607 void EGLAPIENTRY eglProgramCacheQueryANGLE(EGLDisplay dpy, in eglProgramCacheQueryANGLE() argument
614 EGL_ProgramCacheQueryANGLE(dpy, index, key, keysize, binary, binarysize); in eglProgramCacheQueryANGLE()
617 void EGLAPIENTRY eglProgramCachePopulateANGLE(EGLDisplay dpy, in eglProgramCachePopulateANGLE() argument
623 EGL_ProgramCachePopulateANGLE(dpy, key, keysize, binary, binarysize); in eglProgramCachePopulateANGLE()
626 EGLint EGLAPIENTRY eglProgramCacheResizeANGLE(EGLDisplay dpy, EGLint limit, EGLenum mode) in eglProgramCacheResizeANGLE() argument
629 return EGL_ProgramCacheResizeANGLE(dpy, limit, mode); in eglProgramCacheResizeANGLE()
644 EGLint EGLAPIENTRY eglLabelObjectKHR(EGLDisplay dpy, in eglLabelObjectKHR() argument
650 return EGL_LabelObjectKHR(dpy, objectType, object, label); in eglLabelObjectKHR()
653 void EGLAPIENTRY eglSetBlobCacheFuncsANDROID(EGLDisplay dpy, in eglSetBlobCacheFuncsANDROID() argument
658 return EGL_SetBlobCacheFuncsANDROID(dpy, set, get); in eglSetBlobCacheFuncsANDROID()
661 EGLBoolean EGLAPIENTRY eglGetCompositorTimingSupportedANDROID(EGLDisplay dpy, in eglGetCompositorTimingSupportedANDROID() argument
666 return EGL_GetCompositorTimingSupportedANDROID(dpy, surface, name); in eglGetCompositorTimingSupportedANDROID()
669 EGLBoolean EGLAPIENTRY eglGetCompositorTimingANDROID(EGLDisplay dpy, in eglGetCompositorTimingANDROID() argument
676 return EGL_GetCompositorTimingANDROID(dpy, surface, numTimestamps, names, values); in eglGetCompositorTimingANDROID()
679 EGLBoolean EGLAPIENTRY eglGetNextFrameIdANDROID(EGLDisplay dpy, in eglGetNextFrameIdANDROID() argument
684 return EGL_GetNextFrameIdANDROID(dpy, surface, frameId); in eglGetNextFrameIdANDROID()
687 EGLBoolean EGLAPIENTRY eglGetFrameTimestampSupportedANDROID(EGLDisplay dpy, in eglGetFrameTimestampSupportedANDROID() argument
692 return EGL_GetFrameTimestampSupportedANDROID(dpy, surface, timestamp); in eglGetFrameTimestampSupportedANDROID()
695 EGLBoolean EGLAPIENTRY eglGetFrameTimestampsANDROID(EGLDisplay dpy, in eglGetFrameTimestampsANDROID() argument
703 return EGL_GetFrameTimestampsANDROID(dpy, surface, frameId, numTimestamps, timestamps, values); in eglGetFrameTimestampsANDROID()
706 const char *EGLAPIENTRY eglQueryStringiANGLE(EGLDisplay dpy, EGLint name, EGLint index) in eglQueryStringiANGLE() argument
709 return EGL_QueryStringiANGLE(dpy, name, index); in eglQueryStringiANGLE()
718 EGLint EGLAPIENTRY eglDupNativeFenceFDANDROID(EGLDisplay dpy, EGLSyncKHR sync) in eglDupNativeFenceFDANDROID() argument
721 return EGL_DupNativeFenceFDANDROID(dpy, sync); in eglDupNativeFenceFDANDROID()
724 EGLBoolean EGLAPIENTRY eglSwapBuffersWithFrameTokenANGLE(EGLDisplay dpy, in eglSwapBuffersWithFrameTokenANGLE() argument
729 return EGL_SwapBuffersWithFrameTokenANGLE(dpy, surface, frametoken); in eglSwapBuffersWithFrameTokenANGLE()