The open source OpenXR runtime
at prediction-2 41 lines 630 B view raw
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 * 29android_create_auto_prober(void); 30 31 32/*! 33 * @dir drivers/android 34 * 35 * @brief @ref drv_android files. 36 */ 37 38 39#ifdef __cplusplus 40} 41#endif