Skip to main content

The Private Struct Reference

Declaration

struct Image::Private { ... }

Public Member Attributes Index

uint32_twidth
uint32_theight
std::vector< uint8_t >data
std::vector< Color >palette = ...

Definition at line 155 of file image.cpp.

Public Member Attributes

data

std::vector<uint8_t> Image::Private::data

Definition at line 159 of file image.cpp.

159 std::vector<uint8_t> data;

height

uint32_t Image::Private::height

Definition at line 158 of file image.cpp.

158 uint32_t height;

palette

std::vector<Color> Image::Private::palette
Initialiser
= { { 0xff, 0xff, 0xff, 0x00 }, { 0x00, 0x00, 0x00, 0xff }, { 0xff, 0xff, 0xc0, 0xff }, { 0x9f, 0x9f, 0x60, 0xff }, { 0xa7, 0x38, 0x30, 0xff }, { 0x29, 0x70, 0x18, 0xff }, { 0x97, 0xCC, 0xE8, 0xff }, { 0xe0, 0xe0, 0xe0, 0xff }, { 0xff, 0xff, 0xff, 0xff } }

Definition at line 160 of file image.cpp.

160 std::vector<Color> palette =
161 {
162 { 0xff, 0xff, 0xff, 0 },
163 { 0x00, 0x00, 0x00, 255 },
164 { 0xff, 0xff, 0xc0, 255 },
165 { 0x9f, 0x9f, 0x60, 255 },
166 { 0xa7, 0x38, 0x30, 255 },
167 { 0x29, 0x70, 0x18, 255 },
168 { 0x97, 0xCC, 0xE8, 255 },
169 { 0xe0, 0xe0, 0xe0, 255 },
170 { 0xff, 0xff, 0xff, 255 }
171 };

width

uint32_t Image::Private::width

Definition at line 157 of file image.cpp.

157 uint32_t width;

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


Generated via doxygen2docusaurus by Doxygen 1.14.0.