Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
impeller::Texture Class Referenceabstract

#include <texture.h>

Inheritance diagram for impeller::Texture:
impeller::TestImpellerTexture impeller::TextureGLES impeller::TextureMTL impeller::TextureVK impeller::testing::MockTexture

Public Member Functions

virtual ~Texture ()
 
virtual void SetLabel (std::string_view label)=0
 
bool SetContents (const uint8_t *contents, size_t length, size_t slice=0, bool is_opaque=false)
 
bool SetContents (std::shared_ptr< const fml::Mapping > mapping, size_t slice=0, bool is_opaque=false)
 
virtual bool IsValid () const =0
 
virtual ISize GetSize () const =0
 
bool IsOpaque () const
 
size_t GetMipCount () const
 
const TextureDescriptorGetTextureDescriptor () const
 
void SetCoordinateSystem (TextureCoordinateSystem coordinate_system)
 
TextureCoordinateSystem GetCoordinateSystem () const
 
virtual Scalar GetYCoordScale () const
 
bool NeedsMipmapGeneration () const
 

Protected Member Functions

 Texture (TextureDescriptor desc)
 
virtual bool OnSetContents (const uint8_t *contents, size_t length, size_t slice)=0
 
virtual bool OnSetContents (std::shared_ptr< const fml::Mapping > mapping, size_t slice)=0
 

Protected Attributes

bool mipmap_generated_ = false
 

Detailed Description

Definition at line 17 of file texture.h.

Constructor & Destructor Documentation

◆ ~Texture()

impeller::Texture::~Texture ( )
virtualdefault

◆ Texture()

impeller::Texture::Texture ( TextureDescriptor  desc)
explicitprotected

Definition at line 11 of file texture.cc.

11: desc_(desc) {}

Member Function Documentation

◆ GetCoordinateSystem()

TextureCoordinateSystem impeller::Texture::GetCoordinateSystem ( ) const

Definition at line 77 of file texture.cc.

77 {
78 return coordinate_system_;
79}

◆ GetMipCount()

size_t impeller::Texture::GetMipCount ( ) const

Definition at line 53 of file texture.cc.

53 {
55}
const TextureDescriptor & GetTextureDescriptor() const
Definition texture.cc:57

◆ GetSize()

virtual ISize impeller::Texture::GetSize ( ) const
pure virtual

◆ GetTextureDescriptor()

const TextureDescriptor & impeller::Texture::GetTextureDescriptor ( ) const

Definition at line 57 of file texture.cc.

57 {
58 return desc_;
59}

◆ GetYCoordScale()

Scalar impeller::Texture::GetYCoordScale ( ) const
virtual

Reimplemented in impeller::TextureGLES.

Definition at line 81 of file texture.cc.

81 {
82 return 1.0;
83}

◆ IsOpaque()

bool impeller::Texture::IsOpaque ( ) const

Definition at line 49 of file texture.cc.

49 {
50 return is_opaque_;
51}

◆ IsValid()

virtual bool impeller::Texture::IsValid ( ) const
pure virtual

◆ NeedsMipmapGeneration()

bool impeller::Texture::NeedsMipmapGeneration ( ) const

Returns true if mipmaps have never been generated. The contents of the mipmap may be out of date if the root texture has been modified and the mipmaps hasn't been regenerated.

Definition at line 85 of file texture.cc.

85 {
86 return !mipmap_generated_ && desc_.mip_count > 1;
87}
bool mipmap_generated_
Definition texture.h:64

◆ OnSetContents() [1/2]

virtual bool impeller::Texture::OnSetContents ( const uint8_t *  contents,
size_t  length,
size_t  slice 
)
protectedpure virtual

◆ OnSetContents() [2/2]

virtual bool impeller::Texture::OnSetContents ( std::shared_ptr< const fml::Mapping mapping,
size_t  slice 
)
protectedpure virtual

◆ SetContents() [1/2]

bool impeller::Texture::SetContents ( const uint8_t *  contents,
size_t  length,
size_t  slice = 0,
bool  is_opaque = false 
)

Definition at line 15 of file texture.cc.

18 {
19 if (!IsSliceValid(slice)) {
20 VALIDATION_LOG << "Invalid slice for texture.";
21 return false;
22 }
23 if (!OnSetContents(contents, length, slice)) {
24 return false;
25 }
27 is_opaque_ = is_opaque;
28 return true;
29}
virtual bool OnSetContents(const uint8_t *contents, size_t length, size_t slice)=0
size_t length
#define VALIDATION_LOG
Definition validation.h:73

◆ SetContents() [2/2]

bool impeller::Texture::SetContents ( std::shared_ptr< const fml::Mapping mapping,
size_t  slice = 0,
bool  is_opaque = false 
)

Definition at line 31 of file texture.cc.

33 {
34 if (!IsSliceValid(slice)) {
35 VALIDATION_LOG << "Invalid slice for texture.";
36 return false;
37 }
38 if (!mapping) {
39 return false;
40 }
41 if (!OnSetContents(std::move(mapping), slice)) {
42 return false;
43 }
45 is_opaque_ = is_opaque;
46 return true;
47}

◆ SetCoordinateSystem()

void impeller::Texture::SetCoordinateSystem ( TextureCoordinateSystem  coordinate_system)

Definition at line 73 of file texture.cc.

73 {
74 coordinate_system_ = coordinate_system;
75}

◆ SetLabel()

virtual void impeller::Texture::SetLabel ( std::string_view  label)
pure virtual

Member Data Documentation

◆ mipmap_generated_

bool impeller::Texture::mipmap_generated_ = false
protected

Definition at line 64 of file texture.h.


The documentation for this class was generated from the following files: