XMComparisonMixed 函数 (directxmath.h)
测试比较值以确定比较组件的结果是否混合-一些为 true,一些为 false。
语法
bool XMComparisonMixed(
[in] uint32_t CR
) noexcept;
参数
[in] CR
要测试的比较值。 通常使用 DirectXMath 函数的录制版本(如 XMVector4EqualR)检索比较值。 记录函数的名称以“R”结尾。
返回值
如果某些比较组件为 true,而某些比较组件为 false,则返回 true。
注解
以下代码片段重点介绍了如何使用此函数:
uint32_t comparisonValue = XMVector4EqualR( V1, V2 );
if( XMComparisonMixed( comparisonValue ) )
{
DoStuff();
}
DoStuff
仅当 V1 和 V2 的某些组件不同且某些组件相同时,才会调用函数。 DoStuff
如果所有组件都相等,则不会调用函数;如果所有组件都不同,则不会调用该函数。
平台要求
Microsoft Visual Studio 2010 或 Microsoft Visual Studio 2012 与 Windows SDK for Windows 8。 支持 Win32 桌面应用、Windows 应用商店应用和 Windows Phone 8 应用。要求
要求 | 值 |
---|---|
目标平台 | Windows |
标头 | directxmath.h |