MCPcopy Create free account
hub / github.com/ValveSoftware/openvr / IsOpenXRAppType

Function IsOpenXRAppType

headers/openvr_driver.h:1715–1720  ·  view source on GitHub ↗

returns true if the specified application type is one of the * OpenXR types */

Source from the content-addressed store, hash-verified

1713/** returns true if the specified application type is one of the
1714* OpenXR types */
1715inline bool IsOpenXRAppType( EVRApplicationType eType )
1716{
1717 return eType == VRApplication_OpenXRInstance
1718 || eType == VRApplication_OpenXRScene
1719 || eType == VRApplication_OpenXROverlay;
1720}
1721
1722
1723/** returns true if the specified application type submits eye buffers */

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected