HomeSort by relevance Sort by last modified time
    Searched refs:EGLImage (Results 1 - 14 of 14) sorted by null

  /external/deqp/framework/egl/wrapper/
eglwTypes.inl 55 typedef void* EGLImage;
65 typedef EGLImage EGLImageKHR;
eglwFuncPtrLibraryDecl.inl 13 EGLImage createImage (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLAttrib *attrib_list) const;
26 EGLBoolean destroyImage (EGLDisplay dpy, EGLImage image) const;
eglwApi.inl 70 EGLImage eglwCreateImage (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLint *attrib_list);
83 EGLBoolean eglwDestroyImage (EGLDisplay dpy, EGLImage image);
eglwFunctionTypes.inl 13 typedef EGLW_APICALL EGLImage (EGLW_APIENTRY* eglCreateImageFunc) (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLAttrib *attrib_list);
26 typedef EGLW_APICALL EGLBoolean (EGLW_APIENTRY* eglDestroyImageFunc) (EGLDisplay dpy, EGLImage image);
eglwLibrary.inl 13 virtual EGLImage createImage (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLAttrib *attrib_list) const = 0;
26 virtual EGLBoolean destroyImage (EGLDisplay dpy, EGLImage image) const = 0;
eglwFuncPtrLibraryImpl.inl 42 EGLImage FuncPtrLibrary::createImage (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLAttrib *attrib_list) const
107 EGLBoolean FuncPtrLibrary::destroyImage (EGLDisplay dpy, EGLImage image) const
eglwEnums.inl 38 #define EGL_NO_IMAGE ((eglw::EGLImage)0)
  /external/deqp/framework/egl/
egluUnique.hpp 107 UniqueImage (const eglw::Library& egl, eglw::EGLDisplay display, eglw::EGLImage image);
110 eglw::EGLImage operator* (void) const { return m_image; }
116 eglw::EGLImage m_image;
egluUnique.cpp 98 UniqueImage::UniqueImage (const Library& egl, EGLDisplay display, EGLImage image)
egluCallLogWrapperApi.inl 13 eglw::EGLImage eglCreateImage (eglw::EGLDisplay dpy, eglw::EGLContext ctx, eglw::EGLenum target, eglw::EGLClientBuffer buffer, const eglw::EGLAttrib *attrib_list);
26 eglw::EGLBoolean eglDestroyImage (eglw::EGLDisplay dpy, eglw::EGLImage image);
egluCallLogWrapper.inl 82 eglw::EGLImage CallLogWrapper::eglCreateImage (eglw::EGLDisplay dpy, eglw::EGLContext ctx, eglw::EGLenum target, eglw::EGLClientBuffer buffer, const eglw::EGLAttrib *attrib_list)
86 eglw::EGLImage returnValue = m_egl.createImage(dpy, ctx, target, buffer, attrib_list);
212 eglw::EGLBoolean CallLogWrapper::eglDestroyImage (eglw::EGLDisplay dpy, eglw::EGLImage image)
  /external/mesa3d/docs/
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
127 indicates that we want to create an EGLImage from scratch?
130 creating an EGLImage from an already existing client API
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, th
    [all...]
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
149 context. If no attributes are given, an EGLImage will be created
151 to create the EGLImage for by using the EGL_WAYLAND_PLANE_WL
153 as defined by the buffer format. Writing to an EGLImage created
155 EGLImage as a renderbuffer etc) will result in undefined behavior.
167 Add EGL_WAYLAND_PLANE_WL attribute to allow creating an EGLImage
  /external/deqp/modules/egl/
teglGLES2SharingThreadedTests.cpp 517 class EGLImage : public Object
520 EGLImage (SharedPtr<tcu::ThreadUtil::Event> event, SharedPtr<FenceSync> sync);
521 virtual ~EGLImage (void) {}
533 void addImage (SharedPtr<EGLImage> image) { m_images.push_back(image); }
537 SharedPtr<EGLImage> popImage (int index);
546 std::vector<SharedPtr<EGLImage> > m_images;
563 SharedPtr<EGLImage> EGLResourceManager::popImage (int index)
565 SharedPtr<EGLImage> image = m_images[index];
860 EGLImage::EGLImage (SharedPtr<tcu::ThreadUtil::Event> event, SharedPtr<FenceSync> sync
    [all...]

Completed in 80 milliseconds