2009-10-13 10:27:06 -04:00
|
|
|
/*
|
|
|
|
* Cogl
|
|
|
|
*
|
2014-02-21 20:28:54 -05:00
|
|
|
* A Low Level GPU Graphics and Utilities API
|
2009-10-13 10:27:06 -04:00
|
|
|
*
|
2010-11-05 08:28:33 -04:00
|
|
|
* Copyright (C) 2010,2011 Intel Corporation.
|
2009-10-13 10:27:06 -04:00
|
|
|
*
|
2014-02-21 20:28:54 -05:00
|
|
|
* Permission is hereby granted, free of charge, to any person
|
|
|
|
* obtaining a copy of this software and associated documentation
|
|
|
|
* files (the "Software"), to deal in the Software without
|
|
|
|
* restriction, including without limitation the rights to use, copy,
|
|
|
|
* modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
|
|
* of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
2009-10-13 10:27:06 -04:00
|
|
|
*
|
2014-02-21 20:28:54 -05:00
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
* included in all copies or substantial portions of the Software.
|
2009-10-13 10:27:06 -04:00
|
|
|
*
|
2014-02-21 20:28:54 -05:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
|
|
|
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
* SOFTWARE.
|
2009-10-13 10:27:06 -04:00
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Robert Bragg <robert@linux.intel.com>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2011-10-17 12:55:35 -04:00
|
|
|
#include <cogl-xlib.h>
|
|
|
|
|
2012-04-16 09:14:10 -04:00
|
|
|
#include <cogl-object-private.h>
|
2010-11-04 18:25:52 -04:00
|
|
|
#include <cogl-context-private.h>
|
2009-10-13 10:27:06 -04:00
|
|
|
#include <cogl-framebuffer-private.h>
|
2010-11-05 08:28:33 -04:00
|
|
|
#include <cogl-display-private.h>
|
|
|
|
#include <cogl-renderer-private.h>
|
2011-06-28 09:16:24 -04:00
|
|
|
#include <cogl-xlib-renderer-private.h>
|
2009-10-13 10:27:06 -04:00
|
|
|
|
|
|
|
#include <X11/Xlib.h>
|
2010-11-05 08:28:33 -04:00
|
|
|
#include <X11/extensions/Xdamage.h>
|
2009-10-13 10:27:06 -04:00
|
|
|
|
2010-05-19 11:13:07 -04:00
|
|
|
#include "cogl-xlib.h"
|
|
|
|
|
2010-11-05 08:28:33 -04:00
|
|
|
/* FIXME: when we remove the last X11 based Clutter backend then we
|
|
|
|
* will get rid of these functions and instead rely on the equivalent
|
2011-06-28 09:16:24 -04:00
|
|
|
* _cogl_xlib_renderer API
|
2010-11-05 08:28:33 -04:00
|
|
|
*/
|
|
|
|
|
2010-05-19 11:13:07 -04:00
|
|
|
/* This can't be in the Cogl context because it can be set before
|
|
|
|
context is created */
|
|
|
|
static Display *_cogl_xlib_display = NULL;
|
|
|
|
|
|
|
|
Display *
|
2010-11-05 08:28:33 -04:00
|
|
|
cogl_xlib_get_display (void)
|
2010-05-19 11:13:07 -04:00
|
|
|
{
|
|
|
|
_COGL_GET_CONTEXT (ctx, NULL);
|
|
|
|
|
2011-06-28 09:16:24 -04:00
|
|
|
return cogl_xlib_renderer_get_display (ctx->display->renderer);
|
2010-05-19 11:13:07 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-11-05 08:28:33 -04:00
|
|
|
cogl_xlib_set_display (Display *display)
|
2010-05-19 11:13:07 -04:00
|
|
|
{
|
|
|
|
/* This can only be called once before the Cogl context is created */
|
|
|
|
g_assert (_cogl_xlib_display == NULL);
|
|
|
|
|
|
|
|
_cogl_xlib_display = display;
|
|
|
|
}
|
|
|
|
|
2011-04-13 11:41:41 -04:00
|
|
|
/* These three functions are wrappers around the equivalent renderer
|
|
|
|
functions. They can be removed once all xlib-based backends in
|
|
|
|
Clutter know about the renderer */
|
|
|
|
CoglFilterReturn
|
|
|
|
cogl_xlib_handle_event (XEvent *xevent)
|
|
|
|
{
|
|
|
|
_COGL_GET_CONTEXT (ctx, COGL_FILTER_CONTINUE);
|
|
|
|
|
|
|
|
/* Pass the event on to the renderer */
|
2011-06-28 08:38:50 -04:00
|
|
|
return cogl_xlib_renderer_handle_event (ctx->display->renderer, xevent);
|
2011-04-13 11:41:41 -04:00
|
|
|
}
|
|
|
|
|
2010-11-05 08:28:33 -04:00
|
|
|
void
|
|
|
|
_cogl_xlib_query_damage_extension (void)
|
|
|
|
{
|
|
|
|
int damage_error;
|
2012-11-05 08:45:40 -05:00
|
|
|
Display *display;
|
2010-11-05 08:28:33 -04:00
|
|
|
|
|
|
|
_COGL_GET_CONTEXT (ctxt, NO_RETVAL);
|
|
|
|
|
|
|
|
/* Check whether damage events are supported on this display */
|
2012-11-05 08:45:40 -05:00
|
|
|
display = cogl_xlib_renderer_get_display (ctxt->display->renderer);
|
|
|
|
if (!XDamageQueryExtension (display, &ctxt->damage_base, &damage_error))
|
2010-11-05 08:28:33 -04:00
|
|
|
ctxt->damage_base = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
_cogl_xlib_get_damage_base (void)
|
|
|
|
{
|
2011-06-28 09:16:24 -04:00
|
|
|
CoglX11Renderer *x11_renderer;
|
2010-11-05 08:28:33 -04:00
|
|
|
_COGL_GET_CONTEXT (ctxt, -1);
|
|
|
|
|
2011-12-12 08:27:33 -05:00
|
|
|
x11_renderer =
|
|
|
|
(CoglX11Renderer *) _cogl_xlib_renderer_get_data (ctxt->display->renderer);
|
2011-05-27 08:48:55 -04:00
|
|
|
return x11_renderer->damage_base;
|
2010-11-05 08:28:33 -04:00
|
|
|
}
|