The open source OpenXR runtime

u/hand: Remove unused field

When we need this enum we can add it back in the xrt headers.

-31
-16
src/xrt/auxiliary/util/u_hand_simulation.h
··· 19 19 extern "C" { 20 20 #endif 21 21 22 - 23 - 24 - /*! 25 - * The hand tracking model being used. 26 - * 27 - * XRT_HAND_TRACKING_MODEL_INTRINSIC for devices that measure hand tracking through sensors, ie gloves and knuckles 28 - * XRT_HAND_TRACKING_MODEL_EXTRINSIC for devices that measure hand tracking through external factors like cameras 29 - * 30 - * @ingroup aux_util 31 - */ 32 - // enum u_hand_tracking_model 33 - // { 34 - // XRT_HAND_TRACKING_MODEL_INTRINSIC, 35 - // XRT_HAND_TRACKING_MODEL_EXTRINSIC, 36 - // }; 37 - 38 22 struct u_hand_sim_metacarpal 39 23 { 40 24 struct xrt_vec2 swing;
-15
src/xrt/auxiliary/util/u_hand_tracking.h
··· 18 18 #endif 19 19 20 20 21 - /*! 22 - * The hand tracking model being used. 23 - * 24 - * XRT_HAND_TRACKING_MODEL_INTRINSIC for devices that measure hand tracking through sensors, ie gloves and knuckles 25 - * XRT_HAND_TRACKING_MODEL_EXTRINSIC for devices that measure hand tracking through external factors like cameras 26 - * 27 - * @ingroup aux_util 28 - */ 29 - enum u_hand_tracking_model 30 - { 31 - XRT_HAND_TRACKING_MODEL_INTRINSIC, 32 - XRT_HAND_TRACKING_MODEL_EXTRINSIC, 33 - }; 34 - 35 21 struct u_hand_tracking_finger_value 36 22 { 37 23 float splay; ··· 108 94 // scales dimensions like bone lengths 109 95 float scale; 110 96 111 - enum u_hand_tracking_model model; 112 97 union { 113 98 struct u_hand_tracking_values finger_values; 114 99 } model_data;