D3DCOLOR_RGBA macro

Initializes a color with the supplied red, green, blue, and alpha values.

Syntax

D3DCOLOR D3DCOLOR_RGBA(
   int r,
   int g,
   int b,
   int a
);

Parameters

r

Red component of the color. This value must be in the range 0 through 255.

g

Green component of the color. This value must be in the range 0 through 255.

b

Blue component of the color. This value must be in the range 0 through 255.

a

Alpha component of the color. This value must be in the range 0 through 255.

Return value

Returns the D3DCOLOR value that corresponds to the supplied RGBA values.

Requirements

Requirement Value
Header
D3d9types.h

See also

Macros

D3DCOLOR_ARGB

D3DCOLOR_XRGB