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

Structure: GFX_DisplayInfo_t 

name - a short human-readable name color_formats - mask of color formats this display supports rect - the size of the display

C
typedef struct GFX_DisplayInfo_t {
  const char name[16];
  GFX_ColorMask color_formats;
  GFX_Rect rect;
  struct attributes_t {
    int8_t data_width;
    struct horizontal_t {
      int32_t pulse_width;
      int32_t back_porch;
      int32_t front_porch;
    } horz;
    struct vertical_t {
      int32_t pulse_width;
      int32_t back_porch;
      int32_t front_porch;
    } vert;
    int32_t inv_left_shift;
  } attributes;
} GFX_DisplayInfo;
Remarks

None.

MPLAB® Harmony Graphics Suite