Flutter Engine
The Flutter Engine
Public Member Functions | Static Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
impeller::DeviceBuffer Class Referenceabstract

#include <device_buffer.h>

Inheritance diagram for impeller::DeviceBuffer:
impeller::DeviceBufferGLES impeller::DeviceBufferMTL impeller::DeviceBufferVK impeller::TestImpellerDeviceBuffer impeller::testing::MockDeviceBuffer

Public Member Functions

virtual ~DeviceBuffer ()
 
bool CopyHostBuffer (const uint8_t *source, Range source_range, size_t offset=0u)
 
virtual bool SetLabel (const std::string &label)=0
 
virtual bool SetLabel (const std::string &label, Range range)=0
 
const DeviceBufferDescriptorGetDeviceBufferDescriptor () const
 
virtual uint8_t * OnGetContents () const =0
 
virtual void Flush (std::optional< Range > range=std::nullopt) const
 
virtual void Invalidate (std::optional< Range > range=std::nullopt) const
 

Static Public Member Functions

static BufferView AsBufferView (std::shared_ptr< DeviceBuffer > buffer)
 Create a buffer view of this entire buffer. More...
 

Protected Member Functions

 DeviceBuffer (DeviceBufferDescriptor desc)
 
virtual bool OnCopyHostBuffer (const uint8_t *source, Range source_range, size_t offset)=0
 

Protected Attributes

const DeviceBufferDescriptor desc_
 

Detailed Description

Definition at line 18 of file device_buffer.h.

Constructor & Destructor Documentation

◆ ~DeviceBuffer()

impeller::DeviceBuffer::~DeviceBuffer ( )
virtualdefault

◆ DeviceBuffer()

impeller::DeviceBuffer::DeviceBuffer ( DeviceBufferDescriptor  desc)
explicitprotected

Definition at line 9 of file device_buffer.cc.

Member Function Documentation

◆ AsBufferView()

BufferView impeller::DeviceBuffer::AsBufferView ( std::shared_ptr< DeviceBuffer buffer)
static

Create a buffer view of this entire buffer.

Definition at line 18 of file device_buffer.cc.

18 {
19 BufferView view;
20 view.buffer = std::move(buffer);
21 view.range = {0u, view.buffer->desc_.size};
22 return view;
23}
DEF_SWITCHES_START aot vmservice shared library Name of the *so containing AOT compiled Dart assets for launching the service isolate vm snapshot The VM snapshot data that will be memory mapped as read only SnapshotAssetPath must be present isolate snapshot The isolate snapshot data that will be memory mapped as read only SnapshotAssetPath must be present cache dir Path to the cache directory This is different from the persistent_cache_path in embedder which is used for Skia shader cache icu native lib Path to the library file that exports the ICU data vm service The hostname IP address on which the Dart VM Service should be served If not defaults to or::depending on whether ipv6 is specified vm service A custom Dart VM Service port The default is to pick a randomly available open port disable vm Disable the Dart VM Service The Dart VM Service is never available in release mode disable vm service Disable mDNS Dart VM Service publication Bind to the IPv6 localhost address for the Dart VM Service Ignored if vm service host is set endless trace buffer
Definition: switches.h:126

◆ CopyHostBuffer()

bool impeller::DeviceBuffer::CopyHostBuffer ( const uint8_t *  source,
Range  source_range,
size_t  offset = 0u 
)

Definition at line 29 of file device_buffer.cc.

31 {
32 if (source_range.length == 0u) {
33 // Nothing to copy. Bail.
34 return true;
35 }
36
37 if (source == nullptr) {
38 // Attempted to copy data from a null buffer.
39 return false;
40 }
41
43 // One of the storage modes where a transfer queue must be used.
44 return false;
45 }
46
47 if (offset + source_range.length > desc_.size) {
48 // Out of bounds of this buffer.
49 return false;
50 }
51
52 return OnCopyHostBuffer(source, source_range, offset);
53}
virtual bool OnCopyHostBuffer(const uint8_t *source, Range source_range, size_t offset)=0
SkBitmap source
Definition: examples.cpp:28
SeparatedVector2 offset

◆ Flush()

void impeller::DeviceBuffer::Flush ( std::optional< Range range = std::nullopt) const
virtual

Make any pending writes visible to the GPU.

This method must be called if the device pointer provided by [OnGetContents] is written to without using [CopyHostBuffer]. On Devices with coherent host memory, this method will not perform extra work.

If the range is not provided, the entire buffer is flushed.

Reimplemented in impeller::DeviceBufferGLES.

Definition at line 13 of file device_buffer.cc.

13{}

◆ GetDeviceBufferDescriptor()

const DeviceBufferDescriptor & impeller::DeviceBuffer::GetDeviceBufferDescriptor ( ) const

Definition at line 25 of file device_buffer.cc.

25 {
26 return desc_;
27}

◆ Invalidate()

void impeller::DeviceBuffer::Invalidate ( std::optional< Range range = std::nullopt) const
virtual

Definition at line 15 of file device_buffer.cc.

15{}

◆ OnCopyHostBuffer()

virtual bool impeller::DeviceBuffer::OnCopyHostBuffer ( const uint8_t *  source,
Range  source_range,
size_t  offset 
)
protectedpure virtual

◆ OnGetContents()

virtual uint8_t * impeller::DeviceBuffer::OnGetContents ( ) const
pure virtual

◆ SetLabel() [1/2]

virtual bool impeller::DeviceBuffer::SetLabel ( const std::string &  label)
pure virtual

◆ SetLabel() [2/2]

virtual bool impeller::DeviceBuffer::SetLabel ( const std::string &  label,
Range  range 
)
pure virtual

Member Data Documentation

◆ desc_

const DeviceBufferDescriptor impeller::DeviceBuffer::desc_
protected

Definition at line 49 of file device_buffer.h.


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