2019-03-18 05:52:32 +00:00
|
|
|
// Copyright 2019, Collabora, Ltd.
|
|
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
|
|
/*!
|
|
|
|
* @file
|
|
|
|
* @brief Holds OpenGL swapchain related functions.
|
|
|
|
* @author Jakob Bornecrantz <jakob@collabora.com>
|
|
|
|
* @ingroup oxr_main
|
|
|
|
* @ingroup comp_client
|
|
|
|
*/
|
|
|
|
|
2019-10-30 14:31:54 +00:00
|
|
|
#include <assert.h>
|
2019-03-18 05:52:32 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "xrt/xrt_gfx_xlib.h"
|
|
|
|
#include "util/u_debug.h"
|
|
|
|
|
|
|
|
#include "oxr_objects.h"
|
|
|
|
#include "oxr_logger.h"
|
|
|
|
|
|
|
|
|
|
|
|
static XrResult
|
|
|
|
oxr_swapchain_gl_destroy(struct oxr_logger *log, struct oxr_swapchain *sc)
|
|
|
|
{
|
|
|
|
if (sc->acquired_index >= 0) {
|
|
|
|
sc->release_image(log, sc, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sc->swapchain != NULL) {
|
|
|
|
sc->swapchain->destroy(sc->swapchain);
|
|
|
|
sc->swapchain = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return XR_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static XrResult
|
|
|
|
oxr_swapchain_gl_enumerate_images(struct oxr_logger *log,
|
|
|
|
struct oxr_swapchain *sc,
|
|
|
|
uint32_t count,
|
|
|
|
XrSwapchainImageBaseHeader *images)
|
|
|
|
{
|
|
|
|
struct xrt_swapchain_gl *xsc = (struct xrt_swapchain_gl *)sc->swapchain;
|
2019-10-30 14:31:54 +00:00
|
|
|
|
|
|
|
assert(count > 0);
|
|
|
|
if (images[0].type != XR_TYPE_SWAPCHAIN_IMAGE_OPENGL_KHR) {
|
|
|
|
return oxr_error(log, XR_ERROR_VALIDATION_FAILURE,
|
|
|
|
"unsupported XrSwapchainImageBaseHeader type");
|
|
|
|
}
|
2019-03-18 05:52:32 +00:00
|
|
|
XrSwapchainImageOpenGLKHR *gl_imgs =
|
|
|
|
(XrSwapchainImageOpenGLKHR *)images;
|
|
|
|
|
|
|
|
for (uint32_t i = 0; i < count; i++) {
|
2019-10-30 14:31:54 +00:00
|
|
|
if (gl_imgs[i].type != images[0].type) {
|
|
|
|
return oxr_error(log, XR_ERROR_VALIDATION_FAILURE,
|
|
|
|
"images array contains mixed types");
|
|
|
|
}
|
2019-03-18 05:52:32 +00:00
|
|
|
gl_imgs[i].image = xsc->images[i];
|
|
|
|
}
|
|
|
|
|
2019-09-26 20:25:05 +00:00
|
|
|
return oxr_session_success_result(sc->sess);
|
2019-03-18 05:52:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
XrResult
|
|
|
|
oxr_swapchain_gl_create(struct oxr_logger *log,
|
|
|
|
struct oxr_session *sess,
|
|
|
|
const XrSwapchainCreateInfo *createInfo,
|
|
|
|
struct oxr_swapchain **out_swapchain)
|
|
|
|
{
|
|
|
|
struct oxr_swapchain *sc;
|
|
|
|
XrResult ret;
|
|
|
|
|
|
|
|
ret = oxr_create_swapchain(log, sess, createInfo, &sc);
|
|
|
|
if (ret != XR_SUCCESS) {
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
sc->destroy = oxr_swapchain_gl_destroy;
|
|
|
|
sc->enumerate_images = oxr_swapchain_gl_enumerate_images;
|
|
|
|
|
|
|
|
*out_swapchain = sc;
|
|
|
|
|
|
|
|
return XR_SUCCESS;
|
|
|
|
}
|