Description

32 bit color data structure

Fields

  • r - Red component of the color
  • g - Green component of the color
  • b - Blue component of the color
  • a - Translucent component of the color

Signature

struct Efl.Gfx.Color32 {
    r: uint8;
    g: uint8;
    b: uint8;
    a: uint8;
}

C signature

typedef struct _Efl_Gfx_Color32 {
    uint8_t r;
    uint8_t g;
    uint8_t b;
    uint8_t a;
} Efl_Gfx_Color32;