2007-03-22 14:21:59 -04:00
|
|
|
/* Clutter.
|
|
|
|
* An OpenGL based 'interactive canvas' library.
|
2010-06-17 17:26:12 -04:00
|
|
|
*
|
|
|
|
* Copyright (C) 2006, 2007 OpenedHand
|
|
|
|
* Copyright (C) 2010 Intel Corp
|
2007-03-22 14:21:59 -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
|
2010-03-01 07:56:10 -05:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
2010-06-17 17:26:12 -04:00
|
|
|
* Authors:
|
|
|
|
* Matthew Allum
|
|
|
|
* Robert Bragg
|
2007-03-22 14:21:59 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CLUTTER_BACKEND_EGL_H__
|
|
|
|
#define __CLUTTER_BACKEND_EGL_H__
|
|
|
|
|
|
|
|
#include <glib-object.h>
|
2007-11-15 09:45:27 -05:00
|
|
|
#include <clutter/clutter-event.h>
|
2010-11-04 10:38:32 -04:00
|
|
|
#include <clutter/clutter-backend.h>
|
|
|
|
#include <clutter/clutter-device-manager.h>
|
|
|
|
|
2010-06-17 17:26:12 -04:00
|
|
|
#ifdef COGL_HAS_XLIB_SUPPORT
|
2007-03-27 17:09:11 -04:00
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/Xatom.h>
|
2010-06-17 17:26:12 -04:00
|
|
|
#endif
|
2007-03-22 14:21:59 -04:00
|
|
|
|
2010-10-21 06:49:37 -04:00
|
|
|
#include "clutter-backend-private.h"
|
|
|
|
|
2008-05-27 13:42:50 -04:00
|
|
|
#include "clutter-egl-headers.h"
|
2007-04-27 20:37:11 -04:00
|
|
|
|
2010-06-17 17:26:12 -04:00
|
|
|
#ifdef COGL_HAS_X11_SUPPORT
|
2007-11-15 09:45:27 -05:00
|
|
|
#include "../x11/clutter-backend-x11.h"
|
2010-06-17 17:26:12 -04:00
|
|
|
#endif
|
|
|
|
|
2010-06-17 23:38:43 -04:00
|
|
|
#include "clutter-egl.h"
|
2007-11-15 09:45:27 -05:00
|
|
|
|
2007-03-22 14:21:59 -04:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2010-08-13 10:48:30 -04:00
|
|
|
#define CLUTTER_TYPE_BACKEND_EGL (_clutter_backend_egl_get_type ())
|
2007-05-31 08:35:36 -04:00
|
|
|
#define CLUTTER_BACKEND_EGL(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), CLUTTER_TYPE_BACKEND_EGL, ClutterBackendEGL))
|
2007-03-22 14:21:59 -04:00
|
|
|
#define CLUTTER_IS_BACKEND_EGL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CLUTTER_TYPE_BACKEND_EGL))
|
2007-05-31 08:35:36 -04:00
|
|
|
#define CLUTTER_BACKEND_EGL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), CLUTTER_TYPE_BACKEND_EGL, ClutterBackendEGLClass))
|
2007-03-22 14:21:59 -04:00
|
|
|
#define CLUTTER_IS_BACKEND_EGL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), CLUTTER_TYPE_BACKEND_EGL))
|
2007-05-31 08:35:36 -04:00
|
|
|
#define CLUTTER_BACKEND_EGL_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), CLUTTER_TYPE_BACKEND_EGL, ClutterBackendEGLClass))
|
2007-03-22 14:21:59 -04:00
|
|
|
|
2007-05-31 08:35:36 -04:00
|
|
|
typedef struct _ClutterBackendEGL ClutterBackendEGL;
|
|
|
|
typedef struct _ClutterBackendEGLClass ClutterBackendEGLClass;
|
2007-03-22 14:21:59 -04:00
|
|
|
|
2007-05-31 08:35:36 -04:00
|
|
|
struct _ClutterBackendEGL
|
2007-03-22 14:21:59 -04:00
|
|
|
{
|
2010-06-17 17:26:12 -04:00
|
|
|
#ifdef COGL_HAS_XLIB_SUPPORT
|
2007-11-15 09:45:27 -05:00
|
|
|
ClutterBackendX11 parent_instance;
|
2007-03-27 17:09:11 -04:00
|
|
|
|
2010-06-17 17:26:12 -04:00
|
|
|
#else /* COGL_HAS_X11_SUPPORT */
|
|
|
|
ClutterBackend parent_instance;
|
|
|
|
|
|
|
|
/* main stage singleton */
|
|
|
|
ClutterStageWindow *stage;
|
|
|
|
|
2010-11-04 10:38:32 -04:00
|
|
|
/* device manager (ie evdev) */
|
|
|
|
ClutterDeviceManager *device_manager;
|
|
|
|
|
2010-06-17 17:26:12 -04:00
|
|
|
/* event source */
|
|
|
|
GSource *event_source;
|
|
|
|
|
|
|
|
/* event timer */
|
|
|
|
GTimer *event_timer;
|
|
|
|
|
|
|
|
#endif /* COGL_HAS_X11_SUPPORT */
|
|
|
|
|
2011-02-24 19:31:41 -05:00
|
|
|
CoglContext *cogl_context;
|
2010-11-16 08:54:15 -05:00
|
|
|
|
2011-02-24 19:31:41 -05:00
|
|
|
gboolean can_blit_sub_buffer;
|
2007-03-22 14:21:59 -04:00
|
|
|
};
|
|
|
|
|
2007-05-31 08:35:36 -04:00
|
|
|
struct _ClutterBackendEGLClass
|
2007-03-22 14:21:59 -04:00
|
|
|
{
|
2010-06-17 17:26:12 -04:00
|
|
|
#ifdef COGL_HAS_XLIB_SUPPORT
|
2007-11-15 09:45:27 -05:00
|
|
|
ClutterBackendX11Class parent_class;
|
2010-06-17 17:26:12 -04:00
|
|
|
#else
|
|
|
|
ClutterBackendClass parent_class;
|
|
|
|
#endif
|
2007-03-22 14:21:59 -04:00
|
|
|
};
|
|
|
|
|
2010-08-13 10:48:30 -04:00
|
|
|
GType _clutter_backend_egl_get_type (void) G_GNUC_CONST;
|
2007-03-22 14:21:59 -04:00
|
|
|
|
2010-06-17 17:26:12 -04:00
|
|
|
void _clutter_events_egl_init (ClutterBackendEGL *backend);
|
|
|
|
void _clutter_events_egl_uninit (ClutterBackendEGL *backend);
|
|
|
|
|
2011-02-24 19:31:41 -05:00
|
|
|
G_CONST_RETURN gchar*
|
|
|
|
_clutter_backend_egl_get_vblank (void);
|
2010-11-16 08:54:15 -05:00
|
|
|
|
2007-03-22 14:21:59 -04:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __CLUTTER_BACKEND_EGL_H__ */
|