This topic has not yet been rated - Rate this topic

XMColorXYZToRGB method

Converts XYZ color values to RGB color values.

Syntax


XMVECTOR XMColorXYZToRGB(
  [in]  XMVECTOR xyz
);

Parameters

xyz [in]

Color value to convert with the trisimulus values of X, Y, and Z in the corresponding element, and the W element with Alpha. Each has a range of 0.0 to 1.0

Return value

Returns the converetd color value. X element is Red, Y element is Green, Z element is Blue, and W element is Alpha (a copy of xyz.w). Each has a range of 0.0 to 1.0.

Remarks

Uses the CIE XYZ colorspace.

Note  XMColorXYZToRGB is new for DirectXMath and is not available for XNAMath 2.x.

Platform Requirements

Microsoft Visual Studio 2010 or Microsoft Visual Studio 2012 with the Windows SDK for Windows 8. Supported for Win32 desktop apps, Windows Store apps, and Windows Phone 8 apps.

Requirements

Namespace

Use DirectX.

Header

DirectXMath.h

See also

XMColorRGBToXYZ

 

 

Send comments about this topic to Microsoft

Build date: 11/14/2012

Community Additions

ADD
© 2013 Microsoft. All rights reserved.