/external/mesa3d/docs/ |
D | MESA_drm_image.spec | 34 This extension provides entry points for integrating EGLImage with the 82 To create a DRM EGLImage, call 95 EGL_DRM_BUFFER_USE_SCANOUT_MESA requests that the created EGLImage 98 EGLImage can be shared with other processes by passing the 131 resource. This is fine when we're creating the EGLImage from 136 querying the DRM EGLImage attributes (name, handle, and stride)? 139 but it goes against the EGLImage design. EGLImages are opaque 141 client APIs. By referencing an EGLImage in a client API, the 142 EGLImage target (a texture, a renderbuffer or such) can be 143 used to query the attributes of the EGLImage. We don't have a
|
D | WL_bind_wayland_display.spec | 40 provides a new target for eglCreateImageKHR, to create an EGLImage 114 be sampled from each EGLImage and how they map to rgba components
|
/external/deqp/framework/egl/ |
D | egluUnique.hpp | 107 UniqueImage (const eglw::Library& egl, eglw::EGLDisplay display, eglw::EGLImage image); 110 eglw::EGLImage operator* (void) const { return m_image; } in operator *() 116 eglw::EGLImage m_image;
|
D | egluUnique.cpp | 98 UniqueImage::UniqueImage (const Library& egl, EGLDisplay display, EGLImage image) in UniqueImage()
|
D | egluCallLogWrapperApi.inl | 12 eglw::EGLImage eglCreateImage (eglw::EGLDisplay dpy, eglw::EGLContext ctx, eglw::EGLen… 21 eglw::EGLBoolean eglDestroyImage (eglw::EGLDisplay dpy, eglw::EGLImage image);
|
D | egluCallLogWrapper.inl | 72 eglw::EGLImage CallLogWrapper::eglCreateImage (eglw::EGLDisplay dpy, eglw::EGLContext ctx, eglw::EG… 76 eglw::EGLImage returnValue = m_egl.createImage(dpy, ctx, target, buffer, attrib_list); 162 eglw::EGLBoolean CallLogWrapper::eglDestroyImage (eglw::EGLDisplay dpy, eglw::EGLImage image)
|
/external/deqp/framework/egl/wrapper/ |
D | eglwTypes.inl | 55 typedef void* EGLImage; typedef 65 typedef EGLImage EGLImageKHR;
|
D | eglwFuncPtrLibraryDecl.inl | 13 EGLImage createImage (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer … 26 EGLBoolean destroyImage (EGLDisplay dpy, EGLImage image) const;
|
D | eglwLibrary.inl | 13 virtual EGLImage createImage (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClien… 26 virtual EGLBoolean destroyImage (EGLDisplay dpy, EGLImage image) const …
|
D | eglwApi.inl | 70 EGLImage eglwCreateImage (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuf… 83 EGLBoolean eglwDestroyImage (EGLDisplay dpy, EGLImage image);
|
D | eglwFunctionTypes.inl | 13 typedef EGLW_APICALL EGLImage (EGLW_APIENTRY* eglCreateImageFunc) (EGLDisplay dpy, EGL… 26 …ICALL EGLBoolean (EGLW_APIENTRY* eglDestroyImageFunc) (EGLDisplay dpy, EGLImage image);
|
D | eglwFuncPtrLibraryImpl.inl | 42 EGLImage FuncPtrLibrary::createImage (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuff… 107 EGLBoolean FuncPtrLibrary::destroyImage (EGLDisplay dpy, EGLImage image) const
|
D | eglwEnums.inl | 38 #define EGL_NO_IMAGE ((eglw::EGLImage)0)
|
/external/deqp/modules/egl/ |
D | teglGLES2SharingThreadedTests.cpp | 517 class EGLImage : public Object class 520 EGLImage (SharedPtr<tcu::ThreadUtil::Event> event, SharedPtr<FenceSync> sync); 521 virtual ~EGLImage (void) {} in ~EGLImage() 533 void addImage (SharedPtr<EGLImage> image) { m_images.push_back(image); } in addImage() 537 SharedPtr<EGLImage> popImage (int index); 546 std::vector<SharedPtr<EGLImage> > m_images; 563 SharedPtr<EGLImage> EGLResourceManager::popImage (int index) in popImage() 565 SharedPtr<EGLImage> image = m_images[index]; in popImage() 860 EGLImage::EGLImage (SharedPtr<tcu::ThreadUtil::Event> event, SharedPtr<FenceSync> sync) in EGLImage() function in deqp::egl::GLES2ThreadTest::EGLImage 877 SharedPtr<EGLImage> sourceImage; [all …]
|