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
|
2010-03-01 07:56:10 -05:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*
|
2007-03-22 14:21:59 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CLUTTER_STAGE_GLX_H__
|
|
|
|
#define __CLUTTER_STAGE_GLX_H__
|
|
|
|
|
|
|
|
#include <glib-object.h>
|
|
|
|
#include <clutter/clutter-stage.h>
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/Xatom.h>
|
|
|
|
#include <GL/glx.h>
|
|
|
|
#include <GL/gl.h>
|
|
|
|
|
2007-05-16 05:08:30 -04:00
|
|
|
#include "clutter-backend-glx.h"
|
2007-11-15 09:45:27 -05:00
|
|
|
#include "../x11/clutter-stage-x11.h"
|
2007-05-16 05:08:30 -04:00
|
|
|
|
2007-03-22 14:21:59 -04:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2010-08-13 10:48:30 -04:00
|
|
|
#define CLUTTER_TYPE_STAGE_GLX (_clutter_stage_glx_get_type ())
|
2007-05-31 07:13:43 -04:00
|
|
|
#define CLUTTER_STAGE_GLX(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), CLUTTER_TYPE_STAGE_GLX, ClutterStageGLX))
|
2007-03-22 14:21:59 -04:00
|
|
|
#define CLUTTER_IS_STAGE_GLX(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CLUTTER_TYPE_STAGE_GLX))
|
2007-05-31 07:13:43 -04:00
|
|
|
#define CLUTTER_STAGE_GLX_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), CLUTTER_TYPE_STAGE_GLX, ClutterStageGLXClass))
|
2007-03-22 14:21:59 -04:00
|
|
|
#define CLUTTER_IS_STAGE_GLX_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), CLUTTER_TYPE_STAGE_GLX))
|
2007-05-31 07:13:43 -04:00
|
|
|
#define CLUTTER_STAGE_GLX_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), CLUTTER_TYPE_STAGE_GLX, ClutterStageGLXClass))
|
2007-03-22 14:21:59 -04:00
|
|
|
|
2007-05-31 07:13:43 -04:00
|
|
|
typedef struct _ClutterStageGLX ClutterStageGLX;
|
|
|
|
typedef struct _ClutterStageGLXClass ClutterStageGLXClass;
|
2007-03-22 14:21:59 -04:00
|
|
|
|
2007-05-31 07:13:43 -04:00
|
|
|
struct _ClutterStageGLX
|
2007-03-22 14:21:59 -04:00
|
|
|
{
|
2007-11-15 09:45:27 -05:00
|
|
|
ClutterStageX11 parent_instance;
|
2007-03-22 14:21:59 -04:00
|
|
|
|
2009-11-12 15:37:01 -05:00
|
|
|
int pending_swaps;
|
|
|
|
|
2007-03-22 14:21:59 -04:00
|
|
|
GLXPixmap glxpixmap;
|
2010-01-14 09:03:23 -05:00
|
|
|
GLXWindow glxwin;
|
2009-11-30 12:47:55 -05:00
|
|
|
|
2010-09-07 20:18:30 -04:00
|
|
|
/* We only enable clipped redraws after 2 frames, since we've seen
|
|
|
|
* a lot of drivers can struggle to get going and may output some
|
|
|
|
* junk frames to start with. */
|
|
|
|
unsigned long frame_count;
|
|
|
|
|
2009-11-30 12:47:55 -05:00
|
|
|
gboolean initialized_redraw_clip;
|
|
|
|
ClutterGeometry bounding_redraw_clip;
|
2007-03-22 14:21:59 -04:00
|
|
|
};
|
|
|
|
|
2007-05-31 07:13:43 -04:00
|
|
|
struct _ClutterStageGLXClass
|
2007-03-22 14:21:59 -04:00
|
|
|
{
|
2007-11-15 09:45:27 -05:00
|
|
|
ClutterStageX11Class parent_class;
|
2007-03-22 14:21:59 -04:00
|
|
|
};
|
|
|
|
|
2010-08-13 10:48:30 -04:00
|
|
|
GType _clutter_stage_glx_get_type (void) G_GNUC_CONST;
|
2009-11-30 12:47:55 -05:00
|
|
|
|
2010-08-13 10:48:30 -04:00
|
|
|
void _clutter_stage_glx_redraw (ClutterStageGLX *stage_glx,
|
2009-11-30 12:47:55 -05:00
|
|
|
ClutterStage *stage);
|
2007-03-22 14:21:59 -04:00
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __CLUTTER_STAGE_H__ */
|