The open source OpenXR runtime
0
fork

Configure Feed

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

d/remote: Print out name values on wrong input name

+2 -2
+2 -2
src/xrt/drivers/remote/r_device.c
··· 102 102 struct r_hub *r = rd->r; 103 103 104 104 if (name != XRT_INPUT_INDEX_AIM_POSE && name != XRT_INPUT_INDEX_GRIP_POSE) { 105 - U_LOG_E("Unknown input name"); 105 + U_LOG_E("Unknown input name: 0x%0x", name); 106 106 return; 107 107 } 108 108 ··· 141 141 142 142 143 143 if (name != XRT_INPUT_GENERIC_HAND_TRACKING_LEFT && name != XRT_INPUT_GENERIC_HAND_TRACKING_RIGHT) { 144 - U_LOG_E("Unknown input name for hand tracker"); 144 + U_LOG_E("Unknown input name for hand tracker: 0x%0x", name); 145 145 return; 146 146 } 147 147