2010-09-28 10:17:46 -04:00
|
|
|
/*
|
|
|
|
* Clutter.
|
|
|
|
*
|
|
|
|
* An OpenGL based 'interactive canvas' library.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010 Intel Corporation.
|
|
|
|
*
|
|
|
|
* 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
* Authors:
|
|
|
|
* Matthew Allum
|
|
|
|
* Robert Bragg
|
|
|
|
* Kristian Høgsberg
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2011-01-30 23:22:50 -05:00
|
|
|
#include <glib.h>
|
2010-09-28 10:17:46 -04:00
|
|
|
|
|
|
|
#include "clutter-stage-wayland.h"
|
|
|
|
|
2011-05-09 17:45:33 -04:00
|
|
|
#include "clutter-stage-window.h"
|
2010-10-21 06:29:09 -04:00
|
|
|
|
2011-05-09 17:45:33 -04:00
|
|
|
#include <cogl/cogl.h>
|
2010-09-28 10:17:46 -04:00
|
|
|
|
2011-05-09 17:45:33 -04:00
|
|
|
static ClutterStageWindowIface *clutter_stage_window_parent_iface = NULL;
|
2010-09-28 10:17:46 -04:00
|
|
|
|
|
|
|
static void clutter_stage_window_iface_init (ClutterStageWindowIface *iface);
|
|
|
|
|
|
|
|
G_DEFINE_TYPE_WITH_CODE (ClutterStageWayland,
|
2011-05-09 17:45:33 -04:00
|
|
|
clutter_stage_wayland,
|
|
|
|
CLUTTER_TYPE_STAGE_COGL,
|
2010-09-28 10:17:46 -04:00
|
|
|
G_IMPLEMENT_INTERFACE (CLUTTER_TYPE_STAGE_WINDOW,
|
|
|
|
clutter_stage_window_iface_init));
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
clutter_stage_wayland_realize (ClutterStageWindow *stage_window)
|
|
|
|
{
|
|
|
|
ClutterStageWayland *stage_wayland = CLUTTER_STAGE_WAYLAND (stage_window);
|
2011-05-09 17:45:33 -04:00
|
|
|
ClutterStageCogl *stage_cogl = CLUTTER_STAGE_COGL (stage_window);
|
|
|
|
struct wl_surface *wl_surface;
|
2010-09-29 17:10:44 -04:00
|
|
|
|
2011-05-09 17:45:33 -04:00
|
|
|
clutter_stage_window_parent_iface->realize (stage_window);
|
2010-09-28 10:17:46 -04:00
|
|
|
|
2011-05-09 17:45:33 -04:00
|
|
|
wl_surface = cogl_wayland_onscreen_get_surface (stage_cogl->onscreen);
|
2010-09-29 17:10:44 -04:00
|
|
|
|
2011-05-09 17:45:33 -04:00
|
|
|
wl_surface_set_user_data (wl_surface, stage_wayland);
|
2010-09-29 17:10:44 -04:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-05-09 17:45:33 -04:00
|
|
|
clutter_stage_wayland_init (ClutterStageWayland *stage_wayland)
|
2010-09-29 17:10:44 -04:00
|
|
|
{
|
2010-09-28 10:17:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clutter_stage_window_iface_init (ClutterStageWindowIface *iface)
|
|
|
|
{
|
2011-05-09 17:45:33 -04:00
|
|
|
clutter_stage_window_parent_iface = g_type_interface_peek_parent (iface);
|
2011-02-08 10:55:18 -05:00
|
|
|
|
2011-05-09 17:45:33 -04:00
|
|
|
iface->realize = clutter_stage_wayland_realize;
|
2010-09-28 10:17:46 -04:00
|
|
|
}
|
|
|
|
|
2010-09-29 17:10:44 -04:00
|
|
|
static void
|
2011-05-09 17:45:33 -04:00
|
|
|
clutter_stage_wayland_class_init (ClutterStageWaylandClass *klass)
|
2010-09-28 10:17:46 -04:00
|
|
|
{
|
|
|
|
}
|