mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2025-01-11 17:35:27 +00:00
54 lines
1.3 KiB
C
54 lines
1.3 KiB
C
// Copyright 2019, Collabora, Ltd.
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
/*!
|
|
* @file
|
|
* @brief Xlib client side glue to compositor implementation.
|
|
* @author Jakob Bornecrantz <jakob@collabora.com>
|
|
* @ingroup comp_client
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "util/u_misc.h"
|
|
|
|
#include "xrt/xrt_gfx_xlib.h"
|
|
|
|
#include "client/comp_xlib_client.h"
|
|
|
|
|
|
static void
|
|
client_xlib_compositor_destroy(struct xrt_compositor *xc)
|
|
{
|
|
struct client_xlib_compositor *c = client_xlib_compositor(xc);
|
|
// Pipe down call into fd compositor.
|
|
c->base.xcfd->base.destroy(&c->base.xcfd->base);
|
|
free(c);
|
|
}
|
|
|
|
typedef void (*void_ptr_func)();
|
|
|
|
void_ptr_func
|
|
glXGetProcAddress(const char *procName);
|
|
|
|
struct client_xlib_compositor *
|
|
client_xlib_compositor_create(struct xrt_compositor_fd *xcfd,
|
|
Display *xDisplay,
|
|
uint32_t visualid,
|
|
GLXFBConfig glxFBConfig,
|
|
GLXDrawable glxDrawable,
|
|
GLXContext glxContext)
|
|
{
|
|
struct client_xlib_compositor *c =
|
|
U_TYPED_CALLOC(struct client_xlib_compositor);
|
|
|
|
if (!client_gl_compositor_init(&c->base, xcfd, glXGetProcAddress)) {
|
|
free(c);
|
|
return NULL;
|
|
}
|
|
|
|
c->base.base.base.destroy = client_xlib_compositor_destroy;
|
|
|
|
return c;
|
|
}
|