Please Select Your Location
Australia
Österreich
België
Canada
Canada - Français
中国
Česká republika
Denmark
Deutschland
France
HongKong
Iceland
Ireland
Italia
日本
Korea
Latvija
Lietuva
Lëtzebuerg
Malta
المملكة العربية السعودية (Arabic)
Nederland
New Zealand
Norge
Polska
Portugal
Russia
Saudi Arabia
Southeast Asia
España
Suisse
Suomi
Sverige
台灣
Ukraine
United Kingdom
United States
Please Select Your Location
België
Česká republika
Denmark
Iceland
Ireland
Italia
Latvija
Lietuva
Lëtzebuerg
Malta
Nederland
Norge
Polska
Portugal
España
Suisse
Suomi
Sverige

Common Interface

VIVE OpenXR Plugin provides common API interfaces. Some APIs are following the Khronos Official specifications and others are plugin-dependent but more convenient for use.

Hand Tracking

Official APIs

NOTE: All official (Khronos) APIs provided by VIVE OpenXR Plugin provide XrSession by default so you don't have to fill the XrSession.

  • xrCreateHandTrackerEXT: An application can create an XrHandTrackerEXT handle using xrCreateHandTrackerEXT function.
  • xrDestroyHandTrackerEXT: xrDestroyHandTrackerEXT function releases the handTracker and the underlying resources when finished with hand tracking experiences.
  • xrLocateHandJointsEXT: The xrLocateHandJointsEXT function locates an array of hand joints to a base space at given time.
Plugin Dependent API

Facial Tracking

Official APIs

NOTE: All official (Khronos) APIs provided by VIVE OpenXR Plugin provide XrSession by default so you don't have to fill the XrSession.

Plugin Dependent API
  • GetExpressionWeightings: Retrieves an array of values of blend shapes for a facial expression on a given time. By using GetExpressionWeightings function you don't have to use Facial Tracking Official APIs.

Path Enumeration

Official APIs

NOTE: All official (Khronos) APIs provided by VIVE OpenXR Plugin provide XrSession by default so you don't have to fill the XrSession.

  • xrEnumeratePathsForInteractionProfileHTC: xrEnumeratePathsForInteractionProfileHTC get the user paths and input/output source paths associated with an interaction profile of XR device that the runtime has supported.
Plugin Dependent API
  • GetUserPaths: This function gets the user paths associated with an interaction profile of XR device that the runtime has supported. By using GetUserPaths function you don't have to use Path Enumeration Official APIs.
  • GetInputPathsWithUserPath: This function gets the input/output source paths associated with an interaction profile of XR device that the runtime has supported. By using GetUserPaths function you don't have to use Path Enumeration Official APIs.
  • PathToString: This function retrieves retrieves the path name string associated with an XrPath. By using PathToString function you don't have to use xrPathToString.
  • StringToPath: This function retrieves retrieves the XrPath value for a well-formed path string. By using StringToPath function you don't have to use xrStringToPath.

Eye Tracker

Official APIs

NOTE: All official (Khronos) APIs provided by VIVE OpenXR Plugin provide XrSession by default so you don't have to fill the XrSession.

  • xrCreateEyeTrackerHTC: An application creates an XrEyeTrackerHTC handle using xrCreateEyeTrackerHTC function.This handle is used for getting eye tracking related data using xrGetEyeGazesHTC, xrGetPupilDatasHTC and xrGetEyeGeometricDatasHTC function.
  • xrDestroyEyeTrackerHTC: xrDestroyEyeTrackerHTC function releases the eyeTracker and the underlying resources when the eye tracking experience is over.
  • xrGetEyeGazesHTC: The xrGetEyeGazesHTC function obtains pose for a user’s eyes at a specific time and within a specific coordinate system.
  • xrGetPupilDatasHTC: The xrGetPupilDatasHTC function obtains pupil data.
  • xrGetEyeGeometricDatasHTC: The xrGetEyeGeometricDatasHTC function obtains geometric eye data such as openness of the eye.
Plugin Dependent API