Flutter Impeller
impeller::FRCFormatDescriptor Struct Reference

A pixel format and usage that is sufficient to check if images of that format and usage are suitable for use with fixed-rate compression. More...

#include <capabilities_vk.h>

Public Member Functions

 FRCFormatDescriptor (const vk::ImageCreateInfo &image_info)
 

Public Attributes

vk::Format format = vk::Format::eUndefined
 
vk::ImageType type = {}
 
vk::ImageTiling tiling = {}
 
vk::ImageUsageFlags usage = {}
 
vk::ImageCreateFlags flags = {}
 

Detailed Description

A pixel format and usage that is sufficient to check if images of that format and usage are suitable for use with fixed-rate compression.

Definition at line 151 of file capabilities_vk.h.

Constructor & Destructor Documentation

◆ FRCFormatDescriptor()

impeller::FRCFormatDescriptor::FRCFormatDescriptor ( const vk::ImageCreateInfo &  image_info)
inlineexplicit

Definition at line 158 of file capabilities_vk.h.

159  : format(image_info.format),
160  type(image_info.imageType),
161  tiling(image_info.tiling),
162  usage(image_info.usage),
163  flags(image_info.flags) {}

Member Data Documentation

◆ flags

vk::ImageCreateFlags impeller::FRCFormatDescriptor::flags = {}

Definition at line 156 of file capabilities_vk.h.

Referenced by impeller::CapabilitiesVK::GetSupportedFRCRate().

◆ format

vk::Format impeller::FRCFormatDescriptor::format = vk::Format::eUndefined

Definition at line 152 of file capabilities_vk.h.

Referenced by impeller::CapabilitiesVK::GetSupportedFRCRate().

◆ tiling

vk::ImageTiling impeller::FRCFormatDescriptor::tiling = {}

Definition at line 154 of file capabilities_vk.h.

Referenced by impeller::CapabilitiesVK::GetSupportedFRCRate().

◆ type

vk::ImageType impeller::FRCFormatDescriptor::type = {}

Definition at line 153 of file capabilities_vk.h.

Referenced by impeller::CapabilitiesVK::GetSupportedFRCRate().

◆ usage

vk::ImageUsageFlags impeller::FRCFormatDescriptor::usage = {}

Definition at line 155 of file capabilities_vk.h.

Referenced by impeller::CapabilitiesVK::GetSupportedFRCRate().


The documentation for this struct was generated from the following file:
impeller::FRCFormatDescriptor::tiling
vk::ImageTiling tiling
Definition: capabilities_vk.h:154
impeller::FRCFormatDescriptor::usage
vk::ImageUsageFlags usage
Definition: capabilities_vk.h:155
impeller::FRCFormatDescriptor::format
vk::Format format
Definition: capabilities_vk.h:152
impeller::FRCFormatDescriptor::type
vk::ImageType type
Definition: capabilities_vk.h:153
impeller::FRCFormatDescriptor::flags
vk::ImageCreateFlags flags
Definition: capabilities_vk.h:156