RGBA_MAKE

The RGBA_MAKE macro creates an RGBA D3DCOLOR value from supplied red, green, blue, and alpha components.

RGBA_MAKE(r, g, b, a)   \ 
    ((D3DCOLOR) (((a) << 24) | ((r) << 16) | ((g) << 8) | (b))) 
 

Parameters

r, g, b, and a
Red, green, blue, and alpha components of the RGBA color to be created.

Return Values

The macros returns the color.

QuickInfo

  Windows NT: Use version 4.0 or later.
  Windows: Use Windows 95 or later. Available as a redistributable for Windows 95.
  Windows CE: Unsupported.
  Header: Declared in d3dtypes.h.