Microsoft DirectX 8.1 (C++) |
Initializes a color with the supplied alpha, red, green, and blue values.
D3DCOLOR_ARGB(a,r,g,b) \ ((D3DCOLOR)((((a)&0xff)<<24)|(((r)&0xff)<<16)|(((g)&0xff)<<8)|((b)&0xff)))
Returns the D3DCOLOR value that corresponds to the supplied ARGB values.
Header: Declared in D3d8types.h.