Flutter Engine
The Flutter Engine
Namespaces | Classes | Typedefs | Enumerations | Functions
impeller::android Namespace Reference

Namespaces

namespace  testing
 

Classes

struct  AndroidProc
 
class  Choreographer
 This class describes access to the choreographer instance for the current thread. Choreographers are only available on API levels above 24. On levels below 24, an invalid choreographer will be returned. More...
 
class  HardwareBuffer
 A wrapper for AHardwareBuffer https://developer.android.com/ndk/reference/group/a-hardware-buffer. More...
 
struct  HardwareBufferDescriptor
 A descriptor use to specify hardware buffer allocations. More...
 
class  NativeWindow
 A wrapper for ANativeWindow https://developer.android.com/ndk/reference/group/a-native-window. More...
 
struct  ProcTable
 The table of Android procs that are resolved dynamically. More...
 
class  SurfaceControl
 A wrapper for ASurfaceControl. https://developer.android.com/ndk/reference/group/native-activity#asurfacecontrol. More...
 
class  SurfaceTransaction
 A wrapper for ASurfaceTransaction. https://developer.android.com/ndk/reference/group/native-activity#asurfacetransaction. More...
 
struct  TransactionInFlightData
 

Typedefs

using HardwareBufferUsage = Mask< HardwareBufferUsageFlags >
 

Enumerations

enum class  HardwareBufferFormat { kR8G8B8A8UNormInt }
 
enum class  HardwareBufferUsageFlags {
  kNone = 0u , kFrameBufferAttachment = 1u << 0u , kCompositorOverlay = 1u << 1u , kSampledImage = 1u << 2u ,
  kCPUReadRarely = 1u << 3u , kCPUReadOften = 1u << 4u , kCPUWriteRarely = 1u << 5u , kCPUWriteOften = 1u << 6u
}
 

Functions

static Choreographer::FrameTimePoint ClockMonotonicNanosToFrameTimePoint (int64_t p_nanos)
 
static AHardwareBuffer_Format ToAHardwareBufferFormat (HardwareBufferFormat format)
 
static AHardwareBuffer_Desc ToAHardwareBufferDesc (const HardwareBufferDescriptor &desc)
 
const ProcTableGetProcTable ()
 
ProcTableGetMutableProcTable ()
 
template<class T >
void ResolveAndroidProc (AndroidProc< T > &proc, const std::vector< fml::RefPtr< fml::NativeLibrary > > &libs)
 
fml::UniqueFD CreatePreviousReleaseFence (const SurfaceControl &control, ASurfaceTransactionStats *stats)
 

Typedef Documentation

◆ HardwareBufferUsage

Definition at line 42 of file hardware_buffer.h.

Enumeration Type Documentation

◆ HardwareBufferFormat

Enumerator
kR8G8B8A8UNormInt 

This format is guaranteed to be supported on all versions of Android. This format can also be converted to an Impeller and Vulkan format.

See also
Vulkan Format: VK_FORMAT_R8G8B8A8_UNORM
OpenGL ES Format: GL_RGBA8

Why have many format when one format do trick?

Definition at line 18 of file hardware_buffer.h.

18 {
19 //----------------------------------------------------------------------------
20 /// This format is guaranteed to be supported on all versions of Android. This
21 /// format can also be converted to an Impeller and Vulkan format.
22 ///
23 /// @see Vulkan Format: VK_FORMAT_R8G8B8A8_UNORM
24 /// @see OpenGL ES Format: GL_RGBA8
25 ///
26 /// Why have many format when one format do trick?
27 ///
29};

◆ HardwareBufferUsageFlags

Enumerator
kNone 
kFrameBufferAttachment 
kCompositorOverlay 
kSampledImage 
kCPUReadRarely 
kCPUReadOften 
kCPUWriteRarely 
kCPUWriteOften 

Definition at line 31 of file hardware_buffer.h.

Function Documentation

◆ ClockMonotonicNanosToFrameTimePoint()

static Choreographer::FrameTimePoint impeller::android::ClockMonotonicNanosToFrameTimePoint ( int64_t  p_nanos)
static

Definition at line 33 of file choreographer.cc.

34 {
35 return Choreographer::FrameTimePoint{std::chrono::nanoseconds(p_nanos)};
36}
std::chrono::time_point< FrameClock > FrameTimePoint
Definition: choreographer.h:59

◆ CreatePreviousReleaseFence()

fml::UniqueFD impeller::android::CreatePreviousReleaseFence ( const SurfaceControl control,
ASurfaceTransactionStats *  stats 
)

Definition at line 11 of file surface_transaction_stats.cc.

12 {
13 const auto fd =
14 GetProcTable().ASurfaceTransactionStats_getPreviousReleaseFenceFd(
15 stats, control.GetHandle());
16 if (fd == -1) {
17 // The previous buffer has already been released. This is not an error.
18 return {};
19 }
20 return fml::UniqueFD{fd};
21}
ASurfaceControl * GetHandle() const
const ProcTable & GetProcTable()
Definition: proc_table.cc:12
dictionary stats
Definition: malisc.py:20

◆ GetMutableProcTable()

ProcTable & impeller::android::GetMutableProcTable ( )

Definition at line 18 of file proc_table.cc.

18 {
19 return const_cast<ProcTable&>(GetProcTable());
20}
The table of Android procs that are resolved dynamically.
Definition: proc_table.h:94

◆ GetProcTable()

const ProcTable & impeller::android::GetProcTable ( )

Definition at line 12 of file proc_table.cc.

12 {
13 static ProcTable gProcTable;
14 return gProcTable;
15}

◆ ResolveAndroidProc()

template<class T >
void impeller::android::ResolveAndroidProc ( AndroidProc< T > &  proc,
const std::vector< fml::RefPtr< fml::NativeLibrary > > &  libs 
)

Definition at line 23 of file proc_table.cc.

25 {
26 for (const auto& lib : libs) {
27 proc.proc = lib->ResolveFunction<T*>(proc.proc_name).value_or(nullptr);
28 if (proc.proc) {
29 break;
30 }
31 }
32}
#define T
Definition: precompiler.cc:65
AndroidProcType * proc
Definition: proc_table.h:74

◆ ToAHardwareBufferDesc()

static AHardwareBuffer_Desc impeller::android::ToAHardwareBufferDesc ( const HardwareBufferDescriptor desc)
static

Definition at line 20 of file hardware_buffer.cc.

21 {
22 AHardwareBuffer_Desc ahb_desc = {};
23 ahb_desc.width = desc.size.width;
24 ahb_desc.height = desc.size.height;
25 ahb_desc.format = ToAHardwareBufferFormat(desc.format);
26 ahb_desc.layers = 1u;
27 if (desc.usage & HardwareBufferUsageFlags::kFrameBufferAttachment) {
28 ahb_desc.usage |= (AHARDWAREBUFFER_USAGE_GPU_FRAMEBUFFER |
29 AHARDWAREBUFFER_USAGE_GPU_COLOR_OUTPUT);
30 }
31 if (desc.usage & HardwareBufferUsageFlags::kCompositorOverlay) {
32 ahb_desc.usage |= AHARDWAREBUFFER_USAGE_COMPOSER_OVERLAY;
33 }
35 ahb_desc.usage |= AHARDWAREBUFFER_USAGE_GPU_SAMPLED_IMAGE;
36 }
37 if (desc.usage & HardwareBufferUsageFlags::kCPUReadRarely) {
38 ahb_desc.usage |= AHARDWAREBUFFER_USAGE_CPU_READ_RARELY;
39 }
40 if (desc.usage & HardwareBufferUsageFlags::kCPUReadOften) {
41 ahb_desc.usage |= AHARDWAREBUFFER_USAGE_CPU_READ_OFTEN;
42 }
43 if (desc.usage & HardwareBufferUsageFlags::kCPUWriteRarely) {
44 ahb_desc.usage |= AHARDWAREBUFFER_USAGE_CPU_WRITE_RARELY;
45 }
46 if (desc.usage & HardwareBufferUsageFlags::kCPUWriteOften) {
47 ahb_desc.usage |= AHARDWAREBUFFER_USAGE_CPU_WRITE_OFTEN;
48 }
49 return ahb_desc;
50}
static AHardwareBuffer_Format ToAHardwareBufferFormat(HardwareBufferFormat format)

◆ ToAHardwareBufferFormat()

static AHardwareBuffer_Format impeller::android::ToAHardwareBufferFormat ( HardwareBufferFormat  format)
static

Definition at line 11 of file hardware_buffer.cc.

12 {
13 switch (format) {
14 case HardwareBufferFormat::kR8G8B8A8UNormInt:
15 return AHARDWAREBUFFER_FORMAT_R8G8B8A8_UNORM;
16 }
18}
uint32_t uint32_t * format
#define FML_UNREACHABLE()
Definition: logging.h:109