2010-05-19 11:13:07 -04:00
|
|
|
/*
|
|
|
|
* Cogl
|
|
|
|
*
|
|
|
|
* An object oriented GL/GLES Abstraction/Utility Layer
|
|
|
|
*
|
2010-11-05 08:28:33 -04:00
|
|
|
* Copyright (C) 2011 Intel Corporation.
|
2010-05-19 11:13:07 -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.
|
|
|
|
*
|
2010-11-05 08:28:33 -04:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2010-05-19 11:13:07 -04:00
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2010-11-05 08:28:33 -04:00
|
|
|
#ifndef __COGL_RENDERER_XLIB_PRIVATE_H
|
|
|
|
#define __COGL_RENDERER_XLIB_PRIVATE_H
|
2010-05-19 11:13:07 -04:00
|
|
|
|
2010-11-05 08:28:33 -04:00
|
|
|
#include "cogl-object-private.h"
|
|
|
|
#include "cogl-xlib-private.h"
|
2011-06-28 09:16:24 -04:00
|
|
|
#include "cogl-x11-renderer-private.h"
|
2010-06-04 05:38:30 -04:00
|
|
|
|
2011-06-28 09:16:24 -04:00
|
|
|
typedef struct _CoglXlibRenderer
|
2010-11-05 08:28:33 -04:00
|
|
|
{
|
2011-06-28 09:16:24 -04:00
|
|
|
CoglX11Renderer _parent;
|
2010-05-19 11:13:07 -04:00
|
|
|
|
2010-11-05 08:28:33 -04:00
|
|
|
Display *xdpy;
|
2010-05-19 11:13:07 -04:00
|
|
|
|
2010-11-05 08:28:33 -04:00
|
|
|
/* Current top of the XError trap state stack. The actual memory for
|
|
|
|
these is expected to be allocated on the stack by the caller */
|
|
|
|
CoglXlibTrapState *trap_state;
|
2011-06-28 09:16:24 -04:00
|
|
|
} CoglXlibRenderer;
|
2010-11-05 08:28:33 -04:00
|
|
|
|
|
|
|
gboolean
|
2011-06-28 09:16:24 -04:00
|
|
|
_cogl_xlib_renderer_connect (CoglRenderer *renderer, GError **error);
|
2010-11-05 08:28:33 -04:00
|
|
|
|
|
|
|
void
|
2011-06-28 09:16:24 -04:00
|
|
|
_cogl_xlib_renderer_disconnect (CoglRenderer *renderer);
|
2010-05-19 11:13:07 -04:00
|
|
|
|
2010-06-04 05:38:30 -04:00
|
|
|
/*
|
2011-06-28 09:16:24 -04:00
|
|
|
* cogl_xlib_renderer_trap_errors:
|
2010-06-04 05:38:30 -04:00
|
|
|
* @state: A temporary place to store data for the trap.
|
|
|
|
*
|
2011-06-28 09:16:24 -04:00
|
|
|
* Traps every X error until _cogl_xlib_renderer_untrap_errors()
|
2011-05-25 17:23:06 -04:00
|
|
|
* called. You should allocate an uninitialised CoglXlibTrapState
|
|
|
|
* struct on the stack to pass to this function. The same pointer
|
2011-06-28 09:16:24 -04:00
|
|
|
* should later be passed to _cogl_xlib_renderer_untrap_errors().
|
2011-05-25 17:23:06 -04:00
|
|
|
*
|
2011-06-28 09:16:24 -04:00
|
|
|
* Calls to _cogl_xlib_renderer_trap_errors() can be nested as long as
|
|
|
|
* _cogl_xlib_renderer_untrap_errors() is called with the
|
2011-05-25 17:23:06 -04:00
|
|
|
* corresponding state pointers in reverse order.
|
2010-06-04 05:38:30 -04:00
|
|
|
*/
|
|
|
|
void
|
2011-06-28 09:16:24 -04:00
|
|
|
_cogl_xlib_renderer_trap_errors (CoglRenderer *renderer,
|
2010-11-05 08:28:33 -04:00
|
|
|
CoglXlibTrapState *state);
|
2010-06-04 05:38:30 -04:00
|
|
|
|
|
|
|
/*
|
2011-06-28 09:16:24 -04:00
|
|
|
* cogl_xlib_renderer_untrap_errors:
|
|
|
|
* @state: The state that was passed to _cogl_xlib_renderer_trap_errors().
|
2010-06-04 05:38:30 -04:00
|
|
|
*
|
|
|
|
* Removes the X error trap and returns the current status.
|
|
|
|
*
|
|
|
|
* Return value: the trapped error code, or 0 for success
|
|
|
|
*/
|
|
|
|
int
|
2011-06-28 09:16:24 -04:00
|
|
|
_cogl_xlib_renderer_untrap_errors (CoglRenderer *renderer,
|
2010-11-05 08:28:33 -04:00
|
|
|
CoglXlibTrapState *state);
|
2010-06-04 05:38:30 -04:00
|
|
|
|
2011-12-12 08:27:33 -05:00
|
|
|
CoglXlibRenderer *
|
|
|
|
_cogl_xlib_renderer_get_data (CoglRenderer *renderer);
|
|
|
|
|
2010-11-05 08:28:33 -04:00
|
|
|
#endif /* __COGL_RENDERER_XLIB_PRIVATE_H */
|