AUI Framework
develop
Cross-platform base for C++ UI apps
|
Pixel in-memory format descriptor (type, count and order of subpixel components).
#include <AUI/Image/APixelFormat.h>
Public Types# | |
enum | Value : std::uint32_t { UNKNOWN = 0 , BYTE = 0b1 , FLOAT = 0b10 , R = 0b000001'00 , RG = 0b000011'00 , RGB = 0b000111'00 , RGBA = 0b001111'00 , ARGB = 0b011111'00 , BGRA = 0b111111'00 , RGB_BYTE = RGB | BYTE , RGBA_BYTE = RGBA | BYTE , RGBA_FLOAT = RGBA | FLOAT , DEFAULT = RGBA | BYTE } |
Public Member Functions# | |
constexpr | APixelFormat (Value value) noexcept |
constexpr | APixelFormat (std::uint32_t value) noexcept |
constexpr | operator Value () const noexcept |
uint8_t | bytesPerPixel () const noexcept |
Static Public Attributes# | |
static constexpr std::uint32_t | COMPONENT_BITS = BGRA |
static constexpr std::uint32_t | TYPE_BITS = 0b11 |