MPLAB® Harmony Graphics Suite > Graphics Library > Aria Graphics Library > Aria Hardware Abstraction Layer (HAL) > Library Interface > b) Data Types and Constants > GFX_PixelBuffer Structure
MPLAB® Harmony Graphics Suite
GFX_PixelBuffer Structure

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

C
typedef struct GFX_PixelBuffer_t {
  GFX_ColorMode mode;
  GFX_Size size;
  int32_t pixel_count;
  uint32_t buffer_length;
  GFX_Buffer pixels;
} GFX_PixelBuffer;
Remarks

None.

MPLAB® Harmony Graphics Suite