XMVerifyCPUSupport 函数 (directxmath.h)

指示 DirectXMath 库是否支持当前平台。

语法

bool XMVerifyCPUSupport() noexcept;

返回值

如果 DirectXMath 库支持给定平台,则返回 true;如果不是,则为 false。

注解

这是处理器支持的运行时检查,应在程序启动时调用,然后再使用任何 DirectXMath 函数或类型。

在 Windows 上,此函数是使用 IsProcessorFeaturePresent 实现的

因此,在 Windows 上执行时, XMVerifyCPUSupport 共享 的平台 IsProcessorFeaturePresent支持要求。

注意 为了避免对 windows.h 的硬依赖,如果未定义 IsProcessorFeaturePresent ,则此函数始终返回 false。 请确保在调用此函数的任何模块中,在“directxmath.h”之前包括“windows.h”。
 

平台要求

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

要求

要求
目标平台 Windows
标头 directxmath.h

另请参阅

DirectXMath 库实用工具函数