• Home
  • Raw
  • Download

Lines Matching full:image

7 // Image.cpp: Implements the egl::Image class representing the EGLimage object.
9 #include "libANGLE/Image.h"
61 // while it is attached to an EGL image. in ~ImageSibling()
67 void ImageSibling::setTargetImage(const gl::Context *context, egl::Image *imageTarget) in setTargetImage()
86 for (Image *sourceImage : mSourcesOf) in orphanImages()
96 void ImageSibling::addImageSource(egl::Image *imageSource) in addImageSource()
102 void ImageSibling::removeImageSource(egl::Image *imageSource) in removeImageSource()
139 for (Image *source : mSourcesOf) in notifySiblings()
246 Image::Image(rx::EGLImplFactory *factory, in Image() function in egl::Image
261 void Image::onDestroy(const Display *display) in onDestroy()
263 // All targets should hold a ref to the egl image and it should not be deleted until there are in onDestroy()
270 // Tell the source that it is no longer used by this image in onDestroy()
287 Image::~Image() in ~Image()
292 void Image::setLabel(EGLLabelKHR label) in setLabel()
297 EGLLabelKHR Image::getLabel() const in getLabel()
302 void Image::addTargetSibling(ImageSibling *sibling) in addTargetSibling()
307 angle::Result Image::orphanSibling(const gl::Context *context, ImageSibling *sibling) in orphanSibling()
316 // The external source of an image cannot be redefined so it cannot be orpahend. in orphanSibling()
333 const gl::Format &Image::getFormat() const in getFormat()
338 bool Image::isRenderable(const gl::Context *context) const in isRenderable()
360 bool Image::isTexturable(const gl::Context *context) const in isTexturable()
381 size_t Image::getWidth() const in getWidth()
386 size_t Image::getHeight() const in getHeight()
391 bool Image::isLayered() const in isLayered()
396 size_t Image::getSamples() const in getSamples()
401 rx::ImageImpl *Image::getImplementation() const in getImplementation()
406 Error Image::initialize(const Display *display) in initialize()
432 bool Image::orphaned() const in orphaned()
437 gl::InitState Image::sourceInitState() const in sourceInitState()
447 void Image::setInitState(gl::InitState initState) in setInitState()
457 void Image::notifySiblings(const ImageSibling *notifier, angle::SubjectMessage message) in notifySiblings()