monado/src/xrt/compositor/client/comp_gl_glue.c

23 lines
445 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
2020-03-01 10:31:21 +00:00
* @brief Glue code to OpenGL client side code.
2019-03-18 05:52:32 +00:00
* @author Jakob Bornecrantz <jakob@collabora.com>
2020-03-01 10:31:21 +00:00
* @ingroup comp_client
2019-03-18 05:52:32 +00:00
*/
#include "xrt/xrt_gfx_gl.h"
void
xrt_gfx_gl_get_versions(struct xrt_api_requirements *ver)
{
ver->min_major = 4;
ver->min_minor = 5;
ver->min_patch = 0;
ver->max_major = 4;
ver->max_minor = 6;
ver->max_patch = (1024 - 1);
}