Monado OpenXR Runtime
daydream_interface.h
Go to the documentation of this file.
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 *
30
31
32/*!
33 * @dir drivers/daydream
34 *
35 * @brief @ref drv_daydream files.
36 */
37
38
39#ifdef __cplusplus
40}
41#endif
struct xrt_auto_prober * daydream_create_auto_prober(void)
Probing function for the Daydream controller.
Definition: daydream_prober.c:104
An interface to be exposed by a device driver that should probe for the existence of its own device o...
Definition: xrt_prober.h:761