XMComparisonAllTrue 函式 (directxmath.h)
測試比較值,以判斷所有比較元件是否為 true。
語法
bool XMComparisonAllTrue(
[in] uint32_t CR
) noexcept;
參數
[in] CR
要測試的比較值。 比較值通常是使用 DirectXMath 函式的錄製版本擷取,例如 XMVector4EqualR。 錄製函式的名稱結尾為 「R」。。
傳回值
如果所有比較的元件都是 true,則傳回 true。
備註
下列代碼段會醒目提示如何使用此函式:
uint32_t comparisonValue = XMVector4EqualR( V1, V2 );
if( XMComparisonAllTrue( comparisonValue ) )
{
DoStuff();
}
DoStuff
只有在 V1 和 V2 的所有四個元件都相等, (所有比較的元件都成立) ,才會呼叫函式。
平臺需求
Microsoft Visual Studio 2010 或 Microsoft Visual Studio 2012 搭配 Windows SDK for Windows 8。 支援 Win32 傳統型應用程式、Windows 市集應用程式和 Windows Phone 8 個應用程式。規格需求
需求 | 值 |
---|---|
目標平台 | Windows |
標頭 | directxmath.h |