2009-10-13 10:27:06 -04:00
|
|
|
/*
|
|
|
|
* Cogl
|
|
|
|
*
|
|
|
|
* An object oriented GL/GLES Abstraction/Utility Layer
|
|
|
|
*
|
2010-11-05 08:28:33 -04:00
|
|
|
* Copyright (C) 2010,2011 Intel Corporation.
|
2009-10-13 10:27:06 -04:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
}
|