D3DCOLOR_XRGB macro
Initializes a color with the supplied red, green, and blue values.
Syntax
D3DCOLOR D3DCOLOR_XRGB(
int r,
int g,
int b
);
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.
Return value
Returns the D3DCOLOR value that corresponds to the supplied RGB values.
Requirements
Requirement | Value |
---|---|
Header |
|
See also