다음을 통해 공유


XMColorModulate 함수(directxmath.h)

해당 구성 요소를 함께 곱하여 두 색을 혼합합니다.

구문

XMVECTOR XM_CALLCONV XMColorModulate(
  [in] FXMVECTOR C1,
  [in] FXMVECTOR C2
) noexcept;

매개 변수

[in] C1

첫 번째 색을 설명하는 XMVECTOR입니다.

[in] C2

두 번째 색을 설명하는 XMVECTOR입니다.

반환 값

변조로 인한 색을 설명하는 XMVECTOR 를 반환합니다.

설명

다음 의사 코드는 함수의 작업을 보여 줍니다.

XMVECTOR colorOut;

colorOut.x = C1.x * C2.x;
colorOut.y = C1.y * C2.y;
colorOut.z = C1.z * C2.z;
colorOut.w = C1.w * C2.w;

return colorOut;

플랫폼 요구 사항

Windows 8 Windows SDK를 사용하는 Microsoft Visual Studio 2010 또는 Microsoft Visual Studio 2012. Win32 데스크톱 앱, Windows 스토어 앱 및 Windows Phone 8개 앱에서 지원됩니다.

요구 사항

요구 사항
대상 플랫폼 Windows
헤더 directxmath.h

추가 정보

DirectXMath 라이브러리 색 함수