Flutter Impeller
impeller::testing::FlushTestAllocator Class Reference
Inheritance diagram for impeller::testing::FlushTestAllocator:
impeller::Allocator

Public Member Functions

ISize GetMaxTextureSizeSupported () const override
 
std::shared_ptr< DeviceBufferOnCreateBuffer (const DeviceBufferDescriptor &desc) override
 
std::shared_ptr< TextureOnCreateTexture (const TextureDescriptor &desc, bool threadsafe) override
 
- Public Member Functions inherited from impeller::Allocator
virtual ~Allocator ()
 
bool IsValid () const
 
std::shared_ptr< DeviceBufferCreateBuffer (const DeviceBufferDescriptor &desc)
 
std::shared_ptr< TextureCreateTexture (const TextureDescriptor &desc, bool threadsafe=false)
 Creates a new texture. More...
 
virtual uint16_t MinimumBytesPerRow (PixelFormat format) const
 Minimum value for row_bytes on a Texture. The row bytes parameter of that method must be aligned to this value. More...
 
std::shared_ptr< DeviceBufferCreateBufferWithCopy (const uint8_t *buffer, size_t length)
 
std::shared_ptr< DeviceBufferCreateBufferWithCopy (const fml::Mapping &mapping)
 
virtual void DebugTraceMemoryStatistics () const
 Write debug memory usage information to the dart timeline in debug and profile modes. More...
 
virtual Bytes DebugGetHeapUsage () const
 

Additional Inherited Members

- Protected Member Functions inherited from impeller::Allocator
 Allocator ()
 

Detailed Description

Definition at line 2617 of file entity_unittests.cc.

Member Function Documentation

◆ GetMaxTextureSizeSupported()

ISize impeller::testing::FlushTestAllocator::GetMaxTextureSizeSupported ( ) const
inlineoverridevirtual

Implements impeller::Allocator.

Definition at line 2619 of file entity_unittests.cc.

2619  {
2620  return ISize(1024, 1024);
2621  };
ISize64 ISize
Definition: size.h:162

◆ OnCreateBuffer()

std::shared_ptr<DeviceBuffer> impeller::testing::FlushTestAllocator::OnCreateBuffer ( const DeviceBufferDescriptor desc)
inlineoverridevirtual

Implements impeller::Allocator.

Definition at line 2623 of file entity_unittests.cc.

2624  {
2625  return std::make_shared<FlushTestDeviceBuffer>(desc);
2626  };

◆ OnCreateTexture()

std::shared_ptr<Texture> impeller::testing::FlushTestAllocator::OnCreateTexture ( const TextureDescriptor desc,
bool  threadsafe 
)
inlineoverridevirtual

Implements impeller::Allocator.

Definition at line 2628 of file entity_unittests.cc.

2629  {
2630  return nullptr;
2631  }

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