MPLAB® Harmony Graphics Suite
|
Structure: GFX_PixelBuffer_t
mode - the color mode of the pixel buffer size - the width and height dimension of the pixel buffer pixel_count - the total number of pixels in the buffer buffer_length - the total size of the buffer in bytes pixels - the pointer to the pixel data for the buffer
typedef struct GFX_PixelBuffer_t { GFX_ColorMode mode; GFX_Size size; int32_t pixel_count; uint32_t buffer_length; GFX_Buffer pixels; } GFX_PixelBuffer;
None.
MPLAB® Harmony Graphics Suite
|