The open source OpenXR runtime
at prediction-2 23 lines 451 B view raw
1// Copyright 2021, Collabora, Ltd. 2// SPDX-License-Identifier: BSL-1.0 3/*! 4 * @file 5 * @brief Driver to emulate controllers from hand-tracking input 6 * @author Moshi Turner <moshiturner@protonmail.com>> 7 * 8 * @ingroup drv_cemu 9 */ 10 11#pragma once 12#include "xrt/xrt_device.h" 13 14#ifdef __cplusplus 15extern "C" { 16#endif 17 18int 19cemu_devices_create(struct xrt_device *head, struct xrt_device *hands, struct xrt_device **out_xdevs); 20 21#ifdef __cplusplus 22} 23#endif