The open source OpenXR runtime
at main 41 lines 647 B view raw
1// Copyright 2019-2020, Collabora, Ltd. 2// SPDX-License-Identifier: BSL-1.0 3/*! 4 * @file 5 * @brief Interface to @ref drv_daydream. 6 * @author Pete Black <pete.black@collabora.com> 7 * @ingroup drv_daydream 8 */ 9 10#pragma once 11 12#ifdef __cplusplus 13extern "C" { 14#endif 15 16/*! 17 * @defgroup drv_daydream Daydream Controller driver 18 * @ingroup drv 19 * 20 * @brief Driver for the Google Daydream Controller. 21 */ 22 23/*! 24 * Probing function for the Daydream controller. 25 * 26 * @ingroup drv_daydream 27 */ 28struct xrt_auto_prober * 29daydream_create_auto_prober(void); 30 31 32/*! 33 * @dir drivers/daydream 34 * 35 * @brief @ref drv_daydream files. 36 */ 37 38 39#ifdef __cplusplus 40} 41#endif