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