The open source OpenXR runtime

d/ht_ctrl_emu: Stub set_output

authored by

Christoph Haag and committed by
Jakob Bornecrantz
9054dc01 7dd0a6e4

+7
+7
src/xrt/drivers/ht_ctrl_emu/ht_ctrl_emu.cpp
··· 356 356 } 357 357 } 358 358 359 + static void 360 + cemu_device_set_output(struct xrt_device *xdev, enum xrt_output_name name, const union xrt_output_value *value) 361 + { 362 + // No-op, needed to avoid crash. 363 + } 364 + 359 365 //! @todo This is flickery; investigate once we get better hand tracking 360 366 static void 361 367 decide(xrt_vec3 one, xrt_vec3 two, bool *out) ··· 435 441 436 442 cemud[i]->base.update_inputs = cemu_device_update_inputs; 437 443 cemud[i]->base.get_tracked_pose = cemu_device_get_tracked_pose; 444 + cemud[i]->base.set_output = cemu_device_set_output; 438 445 cemud[i]->base.get_hand_tracking = cemu_device_get_hand_tracking; 439 446 cemud[i]->base.destroy = cemu_device_destroy; 440 447