Monado OpenXR Runtime
android_prober.h
Go to the documentation of this file.
1// Copyright 2020, Collabora, Ltd.
2// SPDX-License-Identifier: BSL-1.0
3/*!
4 * @file
5 * @brief Interface to Android sensors driver.
6 * @author Lubosz Sarnecki <lubosz.sarnecki@collabora.com>
7 * @ingroup drv_android
8 */
9
10#pragma once
11
12#ifdef __cplusplus
13extern "C" {
14#endif
15
16/*!
17 * @defgroup drv_android Android sensors driver
18 * @ingroup drv
19 *
20 * @brief Generic driver for phone sensors.
21 */
22
23/*!
24 * Probing function for Android sensors.
25 *
26 * @ingroup drv_android
27 */
28struct xrt_auto_prober *
30
31
32/*!
33 * @dir drivers/android
34 *
35 * @brief @ref drv_android files.
36 */
37
38
39#ifdef __cplusplus
40}
41#endif
struct xrt_auto_prober * android_create_auto_prober()
Probing function for Android sensors.
Definition: android_prober.c:85
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