2007-03-22 14:21:59 -04:00
|
|
|
/* Clutter.
|
|
|
|
* An OpenGL based 'interactive canvas' library.
|
|
|
|
* Authored By Matthew Allum <mallum@openedhand.com>
|
|
|
|
* Copyright (C) 2006-2007 OpenedHand
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#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>
|
2007-03-22 14:21:59 -04:00
|
|
|
#include <clutter/clutter-backend.h>
|
2007-03-27 17:09:11 -04:00
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/Xatom.h>
|
2007-03-22 14:21:59 -04:00
|
|
|
|
2008-05-27 13:42:50 -04:00
|
|
|
#include "clutter-egl-headers.h"
|
2007-04-27 20:37:11 -04:00
|
|
|
|
2007-11-15 09:45:27 -05:00
|
|
|
#include "../x11/clutter-backend-x11.h"
|
|
|
|
#include "clutter-eglx.h"
|
|
|
|
|
2007-03-22 14:21:59 -04:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
#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
|
|
|
{
|
2007-11-15 09:45:27 -05:00
|
|
|
ClutterBackendX11 parent_instance;
|
2007-03-27 17:09:11 -04:00
|
|
|
|
2007-04-27 20:37:11 -04:00
|
|
|
/* EGL Specific */
|
|
|
|
EGLDisplay edpy;
|
2008-04-04 11:02:11 -04:00
|
|
|
EGLSurface egl_surface;
|
|
|
|
EGLContext egl_context;
|
2009-08-11 09:18:37 -04:00
|
|
|
EGLConfig egl_config;
|
2008-04-04 11:02:11 -04:00
|
|
|
|
|
|
|
gint egl_version_major;
|
|
|
|
gint egl_version_minor;
|
2007-04-27 20:37:11 -04:00
|
|
|
|
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
|
|
|
{
|
2007-11-15 09:45:27 -05:00
|
|
|
ClutterBackendX11Class parent_class;
|
2007-03-22 14:21:59 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
GType clutter_backend_egl_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __CLUTTER_BACKEND_EGL_H__ */
|