EFM32 Gecko Software Documentation
efm32g-doc-5.1.2
|
BMP Data type structure to hold information about the bmp data returned.
#include <bmp.h>
Data Fields | |
uint16_t | bitsPerPixel |
uint32_t | compressionType |
uint32_t | endOfRow |
uint32_t | size |
uint16_t __BMP_DataType::bitsPerPixel |
Color depth of the data returned from function.
Definition at line 144 of file bmp.h.
Referenced by BMP_readRawData().
uint32_t __BMP_DataType::compressionType |
uint32_t __BMP_DataType::endOfRow |
Marks whether this data is at the end of the current row. endOfRow == 1, if end of row is reached. endOfRow == 0, if there is still unread data left in the row
Definition at line 150 of file bmp.h.
Referenced by BMP_readRawData(), and BMP_readRgbData().
uint32_t __BMP_DataType::size |
Byte length of returned data
Definition at line 148 of file bmp.h.
Referenced by BMP_readRawData(), and BMP_readRgbData().