The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

st/oxr: support different handtracker

There is another handtracker type in spec.
And also we can support other jointCount handtracker.
So checking this default value is not necessary.

authored by

jungjik lee and committed by
Moses Turner
d6cc662d 10c72d42

-5
-5
src/xrt/state_trackers/oxr/oxr_api_session.c
··· 382 382 return oxr_error(&log, XR_ERROR_VALIDATION_FAILURE, "Invalid hand value %d\n", createInfo->hand); 383 383 } 384 384 385 - if (createInfo->handJointSet != XR_HAND_JOINT_SET_DEFAULT_EXT) { 386 - return oxr_error(&log, XR_ERROR_VALIDATION_FAILURE, "Invalid handJointSet value %d\n", 387 - createInfo->handJointSet); 388 - } 389 - 390 385 ret = oxr_hand_tracker_create(&log, sess, createInfo, &hand_tracker); 391 386 if (ret != XR_SUCCESS) { 392 387 return ret;