mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2025-01-23 23:21:46 +00:00
41 lines
570 B
C
41 lines
570 B
C
|
// Copyright 2019, Collabora, Ltd.
|
||
|
// SPDX-License-Identifier: BSL-1.0
|
||
|
/*!
|
||
|
* @file
|
||
|
* @brief Interface to @ref drv_psvr.
|
||
|
* @author Jakob Bornecrantz <jakob@collabora.com>
|
||
|
* @ingroup drv_psvr
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
/*!
|
||
|
* @defgroup drv_psvr PSVR driver
|
||
|
* @ingroup drv
|
||
|
*
|
||
|
* @brief Driver for the Sony PSVR hmd.
|
||
|
*/
|
||
|
|
||
|
/*!
|
||
|
* Create a proble for PSVR devices.
|
||
|
*
|
||
|
* @ingroup drv_psvr
|
||
|
*/
|
||
|
struct xrt_auto_prober*
|
||
|
psvr_create_auto_prober();
|
||
|
|
||
|
/*!
|
||
|
* @dir drivers/psvr
|
||
|
*
|
||
|
* @brief @ref drv_psvr files.
|
||
|
*/
|
||
|
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|