Flutter Engine
The Flutter Engine
|
#include <dl_image_skia.h>
Public Member Functions | |
DlImageSkia (sk_sp< SkImage > image) | |
~DlImageSkia () override | |
sk_sp< SkImage > | skia_image () const override |
If this display list image is meant to be used by the Skia backend, an SkImage instance. Null otherwise. More... | |
std::shared_ptr< impeller::Texture > | impeller_texture () const override |
If this display list image is meant to be used by the Impeller backend, an Impeller texture instance. Null otherwise. More... | |
bool | isOpaque () const override |
If the pixel format of this image ignores alpha, this returns true. This method might conservatively return false when it cannot guarnatee an opaque image, for example when the pixel format of the image supports alpha but the image is made up of entirely opaque pixels. More... | |
bool | isTextureBacked () const override |
bool | isUIThreadSafe () const override |
If the underlying platform image held by this object has no threading requirements for the release of that image (or if arrangements have already been made to forward that image to the correct thread upon deletion), this method returns true. More... | |
SkISize | dimensions () const override |
size_t | GetApproximateByteSize () const override |
Public Member Functions inherited from flutter::DlImage | |
virtual | ~DlImage () |
virtual sk_sp< SkImage > | skia_image () const =0 |
If this display list image is meant to be used by the Skia backend, an SkImage instance. Null otherwise. More... | |
virtual std::shared_ptr< impeller::Texture > | impeller_texture () const =0 |
If this display list image is meant to be used by the Impeller backend, an Impeller texture instance. Null otherwise. More... | |
virtual bool | isOpaque () const =0 |
If the pixel format of this image ignores alpha, this returns true. This method might conservatively return false when it cannot guarnatee an opaque image, for example when the pixel format of the image supports alpha but the image is made up of entirely opaque pixels. More... | |
virtual bool | isTextureBacked () const =0 |
virtual bool | isUIThreadSafe () const =0 |
If the underlying platform image held by this object has no threading requirements for the release of that image (or if arrangements have already been made to forward that image to the correct thread upon deletion), this method returns true. More... | |
virtual SkISize | dimensions () const =0 |
virtual size_t | GetApproximateByteSize () const =0 |
int | width () const |
int | height () const |
SkIRect | bounds () const |
virtual OwningContext | owning_context () const |
virtual std::optional< std::string > | get_error () const |
bool | Equals (const DlImage *other) const |
bool | Equals (const DlImage &other) const |
bool | Equals (const sk_sp< const DlImage > &other) const |
Public Member Functions inherited from SkRefCntBase | |
SkRefCntBase () | |
virtual | ~SkRefCntBase () |
bool | unique () const |
void | ref () const |
void | unref () const |
Additional Inherited Members | |
Public Types inherited from flutter::DlImage | |
enum class | OwningContext { kRaster , kIO } |
Static Public Member Functions inherited from flutter::DlImage | |
static sk_sp< DlImage > | Make (const SkImage *image) |
static sk_sp< DlImage > | Make (sk_sp< SkImage > image) |
Protected Member Functions inherited from flutter::DlImage | |
DlImage () | |
Definition at line 13 of file dl_image_skia.h.
Definition at line 9 of file dl_image_skia.cc.
|
overridedefault |
|
overridevirtual |
Implements flutter::DlImage.
Definition at line 46 of file dl_image_skia.cc.
|
overridevirtual |
Implements flutter::DlImage.
Definition at line 51 of file dl_image_skia.cc.
|
overridevirtual |
If this display list image is meant to be used by the Impeller backend, an Impeller texture instance. Null otherwise.
Implements flutter::DlImage.
Definition at line 20 of file dl_image_skia.cc.
|
overridevirtual |
If the pixel format of this image ignores alpha, this returns true. This method might conservatively return false when it cannot guarnatee an opaque image, for example when the pixel format of the image supports alpha but the image is made up of entirely opaque pixels.
Implements flutter::DlImage.
Definition at line 25 of file dl_image_skia.cc.
|
overridevirtual |
Implements flutter::DlImage.
Definition at line 30 of file dl_image_skia.cc.
|
overridevirtual |
If the underlying platform image held by this object has no threading requirements for the release of that image (or if arrangements have already been made to forward that image to the correct thread upon deletion), this method returns true.
Implements flutter::DlImage.
Definition at line 35 of file dl_image_skia.cc.
If this display list image is meant to be used by the Skia backend, an SkImage instance. Null otherwise.
Implements flutter::DlImage.
Definition at line 15 of file dl_image_skia.cc.