XMColorAdjustContrast 函数 (directxmath.h)

调整颜色的对比度值。

语法

XMVECTOR XM_CALLCONV XMColorAdjustContrast(
  [in] FXMVECTOR C,
  [in] float     Contrast
) noexcept;

参数

[in] C

描述颜色的 XMVECTORC 的每个组件都应在 0.0f 到 1.0f 的范围内。

[in] Contrast

对比度值。 此参数在 50% 灰色和颜色 C 之间线性内插。如果此参数为 0.0f,则返回的颜色为 50% 灰色。 如果此参数为 1.0f,则返回的颜色为原始颜色。

返回值

返回一个 XMVECTOR ,描述由对比度调整产生的颜色。

备注

以下伪代码演示函数的操作。

XMVECTOR colorOut;

colorOut.x = (C.x - 0.5f) * Contrast + 0.5f;
colorOut.y = (C.y - 0.5f) * Contrast + 0.5f;
colorOut.z = (C.z - 0.5f) * Contrast + 0.5f;
colorOut.w = C.w;

return colorOut;

平台要求

带有 Windows SDK for Windows 8 的 Microsoft Visual Studio 2010 或 Microsoft Visual Studio 2012。 支持 Win32 桌面应用、Windows 应用商店应用和 Windows Phone 8 应用。

要求

   
目标平台 Windows
标头 directxmath.h

请参阅

DirectXMath 库颜色函数