DDARGB
This structure contains a color representation with four channels - red, green, blue, and alpha.
typedef struct _DDARGB{
BYTE blue;
BYTE green;
BYTE red;
BYTE alpha;
} DDARGB, *LPDDARGB;
Members
- blue
Byte value indicating the blue intensity of the color. - green
Byte value indicating the green intensity of the color. - red
Byte value indicating the red intensity of the color. - alpha
Byte value indicating the alpha intensity of the color. A value of 0 indicates the color is fully transparent, and a value of 255 indicates the color is fully opaque.
Requirements
Pocket PC: Windows Mobile 5.0 and later
Smartphone: Windows Mobile 5.0 and later
OS Versions: Windows CE 5.01 and later
Header: Ddraw.h.
Send Feedback on this topic to the authors