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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "clutter-backend-glx.h"
|
|
|
|
#include "clutter-stage-glx.h"
|
|
|
|
#include "clutter-glx.h"
|
|
|
|
|
|
|
|
#include "../clutter-main.h"
|
|
|
|
#include "../clutter-feature.h"
|
|
|
|
#include "../clutter-color.h"
|
|
|
|
#include "../clutter-util.h"
|
|
|
|
#include "../clutter-event.h"
|
|
|
|
#include "../clutter-enum-types.h"
|
|
|
|
#include "../clutter-private.h"
|
|
|
|
#include "../clutter-debug.h"
|
2007-05-22 05:31:40 -04:00
|
|
|
#include "../clutter-units.h"
|
2007-12-03 11:29:18 -05:00
|
|
|
#include "../clutter-shader.h"
|
2008-01-21 06:39:23 -05:00
|
|
|
#include "../clutter-group.h"
|
|
|
|
#include "../clutter-container.h"
|
2008-03-28 18:50:55 -04:00
|
|
|
#include "../clutter-stage.h"
|
2008-04-04 11:02:11 -04:00
|
|
|
#include "../clutter-stage-window.h"
|
2007-03-22 14:21:59 -04:00
|
|
|
|
2008-04-25 09:37:36 -04:00
|
|
|
#include "cogl/cogl.h"
|
2007-04-27 17:13:06 -04:00
|
|
|
|
2007-03-22 14:21:59 -04:00
|
|
|
#include <GL/glx.h>
|
|
|
|
#include <GL/gl.h>
|
|
|
|
|
2008-04-04 11:02:11 -04:00
|
|
|
static void clutter_stage_window_iface_init (ClutterStageWindowIface *iface);
|
|
|
|
|
2009-08-13 07:34:07 -04:00
|
|
|
static ClutterStageWindowIface *clutter_stage_glx_parent_iface = NULL;
|
|
|
|
|
2008-04-04 11:02:11 -04:00
|
|
|
G_DEFINE_TYPE_WITH_CODE (ClutterStageGLX,
|
|
|
|
clutter_stage_glx,
|
|
|
|
CLUTTER_TYPE_STAGE_X11,
|
|
|
|
G_IMPLEMENT_INTERFACE (CLUTTER_TYPE_STAGE_WINDOW,
|
|
|
|
clutter_stage_window_iface_init));
|
2007-03-22 14:21:59 -04:00
|
|
|
|
|
|
|
static void
|
2009-08-13 07:34:07 -04:00
|
|
|
clutter_stage_glx_unrealize (ClutterStageWindow *stage_window)
|
2007-03-22 14:21:59 -04:00
|
|
|
{
|
2009-08-13 07:34:07 -04:00
|
|
|
ClutterStageX11 *stage_x11 = CLUTTER_STAGE_X11 (stage_window);
|
2007-03-22 14:21:59 -04:00
|
|
|
|
2008-04-04 11:02:11 -04:00
|
|
|
/* Note unrealize should free up any backend stage related resources */
|
2008-04-04 13:26:26 -04:00
|
|
|
CLUTTER_NOTE (BACKEND, "Unrealizing stage");
|
2007-03-22 14:21:59 -04:00
|
|
|
|
2007-11-15 09:45:27 -05:00
|
|
|
clutter_x11_trap_x_errors ();
|
2007-07-06 05:22:43 -04:00
|
|
|
|
2009-07-31 13:34:51 -04:00
|
|
|
if (!stage_x11->is_foreign_xwin && stage_x11->xwin != None)
|
2007-03-22 14:21:59 -04:00
|
|
|
{
|
2009-07-31 13:34:51 -04:00
|
|
|
XDestroyWindow (stage_x11->xdpy, stage_x11->xwin);
|
|
|
|
stage_x11->xwin = None;
|
2007-03-22 14:21:59 -04:00
|
|
|
}
|
|
|
|
else
|
2009-07-31 13:34:51 -04:00
|
|
|
stage_x11->xwin = None;
|
2007-03-22 14:21:59 -04:00
|
|
|
|
2009-05-13 17:21:48 -04:00
|
|
|
if (stage_x11->xvisinfo != None)
|
|
|
|
{
|
|
|
|
XFree (stage_x11->xvisinfo);
|
|
|
|
stage_x11->xvisinfo = None;
|
|
|
|
}
|
|
|
|
|
2007-11-15 09:45:27 -05:00
|
|
|
XSync (stage_x11->xdpy, False);
|
2007-07-22 18:40:18 -04:00
|
|
|
|
2007-11-15 09:45:27 -05:00
|
|
|
clutter_x11_untrap_x_errors ();
|
2007-07-22 18:40:18 -04:00
|
|
|
|
|
|
|
CLUTTER_MARK ();
|
2007-03-22 14:21:59 -04:00
|
|
|
}
|
|
|
|
|
2009-08-13 07:34:07 -04:00
|
|
|
static gboolean
|
|
|
|
clutter_stage_glx_realize (ClutterStageWindow *stage_window)
|
2007-03-22 14:21:59 -04:00
|
|
|
{
|
2009-08-13 07:34:07 -04:00
|
|
|
ClutterStageX11 *stage_x11 = CLUTTER_STAGE_X11 (stage_window);
|
2009-05-13 17:21:48 -04:00
|
|
|
ClutterBackend *backend;
|
2008-03-28 18:50:55 -04:00
|
|
|
ClutterBackendGLX *backend_glx;
|
2008-06-23 05:55:42 -04:00
|
|
|
ClutterBackendX11 *backend_x11;
|
2009-07-31 13:34:51 -04:00
|
|
|
GError *error;
|
2007-03-22 14:21:59 -04:00
|
|
|
|
2009-05-11 07:36:14 -04:00
|
|
|
CLUTTER_NOTE (ACTOR, "Realizing stage '%s' [%p]",
|
2009-08-13 07:34:07 -04:00
|
|
|
G_OBJECT_TYPE_NAME (stage_window),
|
|
|
|
stage_window);
|
2007-03-22 14:21:59 -04:00
|
|
|
|
2009-05-13 17:21:48 -04:00
|
|
|
backend = clutter_get_default_backend ();
|
|
|
|
backend_glx = CLUTTER_BACKEND_GLX (backend);
|
|
|
|
backend_x11 = CLUTTER_BACKEND_X11 (backend);
|
2008-03-28 18:50:55 -04:00
|
|
|
|
2009-07-31 13:34:51 -04:00
|
|
|
stage_x11->xvisinfo = clutter_backend_x11_get_visual_info (backend_x11);
|
2009-05-13 17:21:48 -04:00
|
|
|
|
2009-07-31 13:34:51 -04:00
|
|
|
if (stage_x11->xvisinfo == None)
|
|
|
|
{
|
|
|
|
g_critical ("Unable to find suitable GL visual.");
|
|
|
|
return FALSE;
|
|
|
|
}
|
2007-03-22 14:21:59 -04:00
|
|
|
|
2009-07-31 13:34:51 -04:00
|
|
|
if (stage_x11->xwin == None)
|
|
|
|
{
|
|
|
|
XSetWindowAttributes xattr;
|
|
|
|
unsigned long mask;
|
|
|
|
|
|
|
|
CLUTTER_NOTE (MISC, "Creating stage X window");
|
|
|
|
|
|
|
|
/* window attributes */
|
|
|
|
xattr.background_pixel = WhitePixel (stage_x11->xdpy,
|
|
|
|
stage_x11->xscreen);
|
|
|
|
xattr.border_pixel = 0;
|
|
|
|
xattr.colormap = XCreateColormap (stage_x11->xdpy,
|
|
|
|
stage_x11->xwin_root,
|
|
|
|
stage_x11->xvisinfo->visual,
|
|
|
|
AllocNone);
|
|
|
|
mask = CWBorderPixel | CWColormap;
|
|
|
|
stage_x11->xwin = XCreateWindow (stage_x11->xdpy,
|
|
|
|
stage_x11->xwin_root,
|
|
|
|
0, 0,
|
|
|
|
stage_x11->xwin_width,
|
|
|
|
stage_x11->xwin_height,
|
|
|
|
0,
|
|
|
|
stage_x11->xvisinfo->depth,
|
|
|
|
InputOutput,
|
|
|
|
stage_x11->xvisinfo->visual,
|
|
|
|
mask, &xattr);
|
|
|
|
}
|
2008-01-31 18:10:30 -05:00
|
|
|
|
2009-07-31 13:34:51 -04:00
|
|
|
if (clutter_x11_has_event_retrieval())
|
|
|
|
{
|
|
|
|
if (clutter_x11_has_xinput())
|
2008-06-23 05:55:42 -04:00
|
|
|
{
|
2009-07-31 13:34:51 -04:00
|
|
|
XSelectInput (stage_x11->xdpy, stage_x11->xwin,
|
|
|
|
StructureNotifyMask |
|
|
|
|
FocusChangeMask |
|
|
|
|
ExposureMask |
|
|
|
|
KeyPressMask | KeyReleaseMask |
|
|
|
|
EnterWindowMask | LeaveWindowMask |
|
|
|
|
PropertyChangeMask);
|
|
|
|
#ifdef HAVE_XINPUT
|
|
|
|
_clutter_x11_select_events (stage_x11->xwin);
|
2008-06-23 05:55:42 -04:00
|
|
|
#endif
|
2008-01-31 18:10:30 -05:00
|
|
|
}
|
2009-07-31 13:34:51 -04:00
|
|
|
else
|
|
|
|
XSelectInput (stage_x11->xdpy, stage_x11->xwin,
|
|
|
|
StructureNotifyMask |
|
|
|
|
FocusChangeMask |
|
|
|
|
ExposureMask |
|
|
|
|
PointerMotionMask |
|
|
|
|
KeyPressMask | KeyReleaseMask |
|
|
|
|
ButtonPressMask | ButtonReleaseMask |
|
|
|
|
EnterWindowMask | LeaveWindowMask |
|
|
|
|
PropertyChangeMask);
|
2007-03-22 14:21:59 -04:00
|
|
|
}
|
2009-05-13 17:21:48 -04:00
|
|
|
|
2009-07-31 13:34:51 -04:00
|
|
|
/* no user resize.. */
|
|
|
|
clutter_stage_x11_fix_window_size (stage_x11, -1, -1);
|
|
|
|
clutter_stage_x11_set_wm_protocols (stage_x11);
|
2007-03-22 14:21:59 -04:00
|
|
|
|
2009-07-31 13:34:51 -04:00
|
|
|
/* ask for a context; a no-op, if a context already exists */
|
|
|
|
error = NULL;
|
|
|
|
_clutter_backend_create_context (backend, &error);
|
|
|
|
if (error)
|
|
|
|
{
|
|
|
|
g_critical ("Unable to realize stage: %s", error->message);
|
|
|
|
g_error_free (error);
|
|
|
|
return FALSE;
|
2007-03-22 14:21:59 -04:00
|
|
|
}
|
|
|
|
|
2009-07-31 13:34:51 -04:00
|
|
|
CLUTTER_NOTE (BACKEND, "Successfully realized stage");
|
|
|
|
|
2009-08-13 07:34:07 -04:00
|
|
|
/* chain up to the StageX11 implementation */
|
|
|
|
return clutter_stage_glx_parent_iface->realize (stage_window);
|
2007-03-22 14:21:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clutter_stage_glx_dispose (GObject *gobject)
|
|
|
|
{
|
|
|
|
G_OBJECT_CLASS (clutter_stage_glx_parent_class)->dispose (gobject);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2007-05-31 07:13:43 -04:00
|
|
|
clutter_stage_glx_class_init (ClutterStageGLXClass *klass)
|
2007-03-22 14:21:59 -04:00
|
|
|
{
|
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
|
|
|
|
|
|
|
gobject_class->dispose = clutter_stage_glx_dispose;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2007-05-31 07:13:43 -04:00
|
|
|
clutter_stage_glx_init (ClutterStageGLX *stage)
|
2007-03-22 14:21:59 -04:00
|
|
|
{
|
2008-04-04 11:02:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clutter_stage_window_iface_init (ClutterStageWindowIface *iface)
|
|
|
|
{
|
2009-08-13 07:34:07 -04:00
|
|
|
clutter_stage_glx_parent_iface = g_type_interface_peek_parent (iface);
|
|
|
|
|
|
|
|
iface->realize = clutter_stage_glx_realize;
|
|
|
|
iface->unrealize = clutter_stage_glx_unrealize;
|
|
|
|
|
2008-04-04 11:02:11 -04:00
|
|
|
/* the rest is inherited from ClutterStageX11 */
|
2007-03-22 14:21:59 -04:00
|
|
|
}
|