monado/src/xrt/targets/openxr/target.c
2019-08-16 17:25:29 -05:00

16 lines
357 B
C

// 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>
*/
#include "target_lists.h"
int
xrt_prober_create(struct xrt_prober **out_prober)
{
return xrt_prober_create_with_lists(out_prober, &target_lists);
}