mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2025-01-12 09:55:33 +00:00
47 lines
1.2 KiB
C
47 lines
1.2 KiB
C
|
// Copyright 2018-2019, Collabora, Ltd.
|
||
|
// SPDX-License-Identifier: BSL-1.0
|
||
|
/*!
|
||
|
* @file
|
||
|
* @brief Holds OpenGL-specific session functions.
|
||
|
* @author Jakob Bornecrantz <jakob@collabora.com>
|
||
|
* @ingroup oxr_main
|
||
|
* @ingroup comp_client
|
||
|
*/
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
#include "xrt/xrt_gfx_xlib.h"
|
||
|
|
||
|
#include "oxr_objects.h"
|
||
|
#include "oxr_logger.h"
|
||
|
#include "oxr_two_call.h"
|
||
|
|
||
|
|
||
|
XrResult
|
||
|
oxr_session_create_gl_xlib(struct oxr_logger *log,
|
||
|
struct oxr_system *sys,
|
||
|
XrGraphicsBindingOpenGLXlibKHR *next,
|
||
|
struct oxr_session **out_session)
|
||
|
{
|
||
|
struct xrt_compositor_gl *xcgl = xrt_gfx_provider_create_gl_xlib(
|
||
|
sys->device, next->xDisplay, next->visualid, next->glxFBConfig,
|
||
|
next->glxDrawable, next->glxContext);
|
||
|
|
||
|
if (xcgl == NULL) {
|
||
|
return oxr_error(log, XR_ERROR_INITIALIZATION_FAILED,
|
||
|
" failed create a compositor");
|
||
|
}
|
||
|
|
||
|
struct oxr_session *sess =
|
||
|
(struct oxr_session *)calloc(1, sizeof(struct oxr_session));
|
||
|
|
||
|
sess->debug = OXR_XR_DEBUG_SESSION;
|
||
|
sess->sys = sys;
|
||
|
sess->compositor = &xcgl->base;
|
||
|
sess->create_swapchain = oxr_swapchain_gl_create;
|
||
|
|
||
|
*out_session = sess;
|
||
|
|
||
|
return XR_SUCCESS;
|
||
|
}
|