monado/src/xrt/targets/openxr/target.c

17 lines
326 B
C
Raw Normal View History

2019-03-18 05:52:32 +00:00
// Copyright 2019, Collabora, Ltd.
// SPDX-License-Identifier: BSL-1.0
/*!
* @file
* @brief The thing that binds all of the OpenXR driver together.
* @author Jakob Bornecrantz <jakob@collabora.com>
*/
2019-04-15 08:51:40 +00:00
#include "util/u_meta_prober.h"
2019-03-18 05:52:32 +00:00
struct xrt_auto_prober*
xrt_auto_prober_create()
2019-03-18 05:52:32 +00:00
{
2019-04-15 08:51:40 +00:00
return u_meta_prober_create();
2019-03-18 05:52:32 +00:00
}