2019-04-20 01:23:50 +00:00
|
|
|
// 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
|
|
|
|
*
|
2020-03-02 18:33:10 +00:00
|
|
|
* @brief Driver for the Sony PSVR HMD.
|
2019-04-20 01:23:50 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*!
|
2019-06-18 16:17:37 +00:00
|
|
|
* Create a probe for PSVR devices.
|
2019-04-20 01:23:50 +00:00
|
|
|
*
|
|
|
|
* @ingroup drv_psvr
|
2020-06-03 16:43:30 +00:00
|
|
|
* @relates xrt_auto_prober
|
2019-04-20 01:23:50 +00:00
|
|
|
*/
|
2019-09-29 09:36:30 +00:00
|
|
|
struct xrt_auto_prober *
|
2019-09-17 10:49:06 +00:00
|
|
|
psvr_create_auto_prober(void);
|
2019-04-20 01:23:50 +00:00
|
|
|
|
|
|
|
/*!
|
|
|
|
* @dir drivers/psvr
|
|
|
|
*
|
|
|
|
* @brief @ref drv_psvr files.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|