2007-10-12 04:17:00 -04:00
|
|
|
#ifdef HAVE_CONFIG_H
|
2007-07-06 09:56:01 -04:00
|
|
|
#include "config.h"
|
2007-10-12 04:17:00 -04:00
|
|
|
#endif
|
2007-07-06 09:56:01 -04:00
|
|
|
|
|
|
|
#include "clutter-stage-egl.h"
|
|
|
|
#include "clutter-egl.h"
|
2008-04-25 09:37:36 -04:00
|
|
|
#include "clutter-backend-egl.h"
|
2007-07-06 09:56:01 -04:00
|
|
|
|
2010-10-21 06:29:09 -04:00
|
|
|
#include "clutter-debug.h"
|
|
|
|
#include "clutter-event.h"
|
|
|
|
#include "clutter-enum-types.h"
|
|
|
|
#include "clutter-feature.h"
|
|
|
|
#include "clutter-main.h"
|
|
|
|
#include "clutter-private.h"
|
2010-11-16 08:54:15 -05:00
|
|
|
#include "clutter-actor-private.h"
|
2010-10-21 06:29:09 -04:00
|
|
|
#include "clutter-stage-private.h"
|
|
|
|
#include "clutter-util.h"
|
2007-07-06 09:56:01 -04:00
|
|
|
|
2010-06-17 17:26:12 -04:00
|
|
|
#ifdef COGL_HAS_X11_SUPPORT
|
|
|
|
static ClutterStageWindowIface *clutter_stage_egl_parent_iface = NULL;
|
|
|
|
#endif
|
|
|
|
|
2008-04-23 13:20:59 -04:00
|
|
|
static void clutter_stage_window_iface_init (ClutterStageWindowIface *iface);
|
|
|
|
|
|
|
|
G_DEFINE_TYPE_WITH_CODE (ClutterStageEGL,
|
2010-08-13 10:48:30 -04:00
|
|
|
_clutter_stage_egl,
|
2010-06-17 17:26:12 -04:00
|
|
|
#ifdef COGL_HAS_X11_SUPPORT
|
|
|
|
CLUTTER_TYPE_STAGE_X11,
|
|
|
|
#else
|
2010-02-27 04:42:42 -05:00
|
|
|
G_TYPE_OBJECT,
|
2010-06-17 17:26:12 -04:00
|
|
|
#endif
|
2008-04-23 13:20:59 -04:00
|
|
|
G_IMPLEMENT_INTERFACE (CLUTTER_TYPE_STAGE_WINDOW,
|
|
|
|
clutter_stage_window_iface_init));
|
2007-07-06 09:56:01 -04:00
|
|
|
|
2010-06-17 17:26:12 -04:00
|
|
|
#ifdef COGL_HAS_XLIB_SUPPORT
|
|
|
|
|
2007-07-06 09:56:01 -04:00
|
|
|
static void
|
2010-06-17 17:26:12 -04:00
|
|
|
clutter_stage_egl_unrealize (ClutterStageWindow *stage_window)
|
|
|
|
{
|
|
|
|
ClutterBackend *backend = clutter_get_default_backend ();
|
|
|
|
ClutterBackendX11 *backend_x11 = CLUTTER_BACKEND_X11 (backend);
|
|
|
|
ClutterStageEGL *stage_egl = CLUTTER_STAGE_EGL (stage_window);
|
|
|
|
ClutterStageX11 *stage_x11 = CLUTTER_STAGE_X11 (stage_window);
|
|
|
|
|
2011-01-18 09:16:11 -05:00
|
|
|
CLUTTER_NOTE (BACKEND, "Unrealizing EGL stage [%p]", stage_egl);
|
2010-06-17 17:26:12 -04:00
|
|
|
|
|
|
|
clutter_x11_trap_x_errors ();
|
|
|
|
|
|
|
|
if (stage_egl->egl_surface != EGL_NO_SURFACE)
|
|
|
|
{
|
2011-01-04 08:59:48 -05:00
|
|
|
eglDestroySurface (clutter_egl_get_egl_display (), stage_egl->egl_surface);
|
2010-06-17 17:26:12 -04:00
|
|
|
stage_egl->egl_surface = EGL_NO_SURFACE;
|
|
|
|
}
|
|
|
|
|
2011-01-18 09:16:11 -05:00
|
|
|
_clutter_stage_x11_destroy_window_untrapped (stage_x11);
|
|
|
|
|
2010-06-17 17:26:12 -04:00
|
|
|
XSync (backend_x11->xdpy, False);
|
|
|
|
|
|
|
|
clutter_x11_untrap_x_errors ();
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
clutter_stage_egl_realize (ClutterStageWindow *stage_window)
|
2007-07-06 09:56:01 -04:00
|
|
|
{
|
2010-06-17 17:26:12 -04:00
|
|
|
ClutterStageEGL *stage_egl = CLUTTER_STAGE_EGL (stage_window);
|
|
|
|
ClutterStageX11 *stage_x11 = CLUTTER_STAGE_X11 (stage_window);
|
|
|
|
ClutterBackend *backend;
|
|
|
|
ClutterBackendEGL *backend_egl;
|
|
|
|
EGLDisplay edpy;
|
|
|
|
|
2011-01-18 09:16:11 -05:00
|
|
|
CLUTTER_NOTE (BACKEND, "Realizing stage '%s' [%p]",
|
|
|
|
G_OBJECT_TYPE_NAME (stage_egl),
|
|
|
|
stage_egl);
|
2010-06-17 17:26:12 -04:00
|
|
|
|
|
|
|
backend = clutter_get_default_backend ();
|
|
|
|
backend_egl = CLUTTER_BACKEND_EGL (backend);
|
|
|
|
|
2011-01-04 08:59:48 -05:00
|
|
|
edpy = clutter_egl_get_egl_display ();
|
2010-06-17 17:26:12 -04:00
|
|
|
|
2011-01-18 09:16:11 -05:00
|
|
|
if (!_clutter_stage_x11_create_window (stage_x11))
|
|
|
|
return FALSE;
|
2010-06-17 17:26:12 -04:00
|
|
|
|
|
|
|
if (stage_egl->egl_surface == EGL_NO_SURFACE)
|
|
|
|
{
|
|
|
|
stage_egl->egl_surface =
|
|
|
|
eglCreateWindowSurface (edpy,
|
|
|
|
backend_egl->egl_config,
|
|
|
|
(NativeWindowType) stage_x11->xwin,
|
|
|
|
NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (stage_egl->egl_surface == EGL_NO_SURFACE)
|
|
|
|
g_warning ("Unable to create an EGL surface");
|
|
|
|
|
|
|
|
return clutter_stage_egl_parent_iface->realize (stage_window);
|
|
|
|
}
|
|
|
|
|
|
|
|
#else /* COGL_HAS_XLIB_SUPPORT */
|
|
|
|
|
|
|
|
static void
|
|
|
|
clutter_stage_egl_unrealize (ClutterStageWindow *stage_window)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
clutter_stage_egl_realize (ClutterStageWindow *stage_window)
|
|
|
|
{
|
|
|
|
/* the EGL surface is created by the backend */
|
|
|
|
return TRUE;
|
2007-07-06 09:56:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-02-27 04:42:42 -05:00
|
|
|
clutter_stage_egl_set_fullscreen (ClutterStageWindow *stage_window,
|
|
|
|
gboolean fullscreen)
|
2007-07-06 09:56:01 -04:00
|
|
|
{
|
2010-02-27 04:42:42 -05:00
|
|
|
g_warning ("Stage of type '%s' do not support ClutterStage::set_fullscreen",
|
|
|
|
G_OBJECT_TYPE_NAME (stage_window));
|
2007-07-06 09:56:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-02-27 04:42:42 -05:00
|
|
|
clutter_stage_egl_set_title (ClutterStageWindow *stage_window,
|
|
|
|
const gchar *title)
|
2007-07-06 09:56:01 -04:00
|
|
|
{
|
2010-02-27 04:42:42 -05:00
|
|
|
g_warning ("Stage of type '%s' do not support ClutterStage::set_title",
|
|
|
|
G_OBJECT_TYPE_NAME (stage_window));
|
2007-07-06 09:56:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-02-27 04:42:42 -05:00
|
|
|
clutter_stage_egl_set_cursor_visible (ClutterStageWindow *stage_window,
|
|
|
|
gboolean cursor_visible)
|
2007-07-06 09:56:01 -04:00
|
|
|
{
|
2010-02-27 04:42:42 -05:00
|
|
|
g_warning ("Stage of type '%s' do not support ClutterStage::set_cursor_visible",
|
|
|
|
G_OBJECT_TYPE_NAME (stage_window));
|
|
|
|
}
|
2009-07-31 13:34:51 -04:00
|
|
|
|
2010-02-27 04:42:42 -05:00
|
|
|
static ClutterActor *
|
|
|
|
clutter_stage_egl_get_wrapper (ClutterStageWindow *stage_window)
|
|
|
|
{
|
|
|
|
return CLUTTER_ACTOR (CLUTTER_STAGE_EGL (stage_window)->wrapper);
|
2007-07-06 09:56:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-02-27 04:42:42 -05:00
|
|
|
clutter_stage_egl_show (ClutterStageWindow *stage_window,
|
|
|
|
gboolean do_raise)
|
2007-07-06 09:56:01 -04:00
|
|
|
{
|
2010-02-27 04:42:42 -05:00
|
|
|
ClutterStageEGL *stage_egl = CLUTTER_STAGE_EGL (stage_window);
|
2008-06-11 06:19:02 -04:00
|
|
|
|
2010-02-27 04:42:42 -05:00
|
|
|
clutter_actor_map (CLUTTER_ACTOR (stage_egl->wrapper));
|
2008-06-11 06:19:02 -04:00
|
|
|
}
|
|
|
|
|
2007-07-06 09:56:01 -04:00
|
|
|
static void
|
2010-02-27 04:42:42 -05:00
|
|
|
clutter_stage_egl_hide (ClutterStageWindow *stage_window)
|
2007-07-06 09:56:01 -04:00
|
|
|
{
|
2010-02-27 04:42:42 -05:00
|
|
|
ClutterStageEGL *stage_egl = CLUTTER_STAGE_EGL (stage_window);
|
2007-07-06 09:56:01 -04:00
|
|
|
|
2010-02-27 04:42:42 -05:00
|
|
|
clutter_actor_unmap (CLUTTER_ACTOR (stage_egl->wrapper));
|
2007-07-06 09:56:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-02-27 04:42:42 -05:00
|
|
|
clutter_stage_egl_get_geometry (ClutterStageWindow *stage_window,
|
|
|
|
ClutterGeometry *geometry)
|
2007-07-06 09:56:01 -04:00
|
|
|
{
|
2010-02-27 04:42:42 -05:00
|
|
|
ClutterStageEGL *stage_egl = CLUTTER_STAGE_EGL (stage_window);
|
|
|
|
ClutterBackendEGL *backend_egl = stage_egl->backend;
|
2007-07-06 09:56:01 -04:00
|
|
|
|
2010-02-27 04:42:42 -05:00
|
|
|
if (geometry)
|
|
|
|
{
|
|
|
|
geometry->x = geometry->y = 0;
|
2008-04-23 13:20:59 -04:00
|
|
|
|
2010-02-27 04:42:42 -05:00
|
|
|
geometry->width = backend_egl->surface_width;
|
|
|
|
geometry->height = backend_egl->surface_height;
|
|
|
|
}
|
2007-07-06 09:56:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-02-27 04:42:42 -05:00
|
|
|
clutter_stage_egl_resize (ClutterStageWindow *stage_window,
|
|
|
|
gint width,
|
|
|
|
gint height)
|
2007-07-06 09:56:01 -04:00
|
|
|
{
|
2008-04-25 09:37:36 -04:00
|
|
|
}
|
|
|
|
|
2010-06-17 17:26:12 -04:00
|
|
|
#endif /* COGL_HAS_XLIB_SUPPORT */
|
|
|
|
|
2010-11-16 08:54:15 -05:00
|
|
|
static gboolean
|
|
|
|
clutter_stage_egl_has_redraw_clips (ClutterStageWindow *stage_window)
|
|
|
|
{
|
|
|
|
ClutterStageEGL *stage_egl = CLUTTER_STAGE_EGL (stage_window);
|
|
|
|
|
2010-11-23 11:05:44 -05:00
|
|
|
/* NB: at the start of each new frame there is an implied clip that
|
|
|
|
* clips everything (i.e. nothing would be drawn) so we need to make
|
|
|
|
* sure we return True in the un-initialized case here.
|
|
|
|
*
|
|
|
|
* NB: a clip width of 0 means a full stage redraw has been queued
|
|
|
|
* so we effectively don't have any redraw clips in that case.
|
|
|
|
*/
|
|
|
|
if (!stage_egl->initialized_redraw_clip ||
|
|
|
|
(stage_egl->initialized_redraw_clip &&
|
|
|
|
stage_egl->bounding_redraw_clip.width != 0))
|
2010-11-16 08:54:15 -05:00
|
|
|
return TRUE;
|
|
|
|
else
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
clutter_stage_egl_ignoring_redraw_clips (ClutterStageWindow *stage_window)
|
|
|
|
{
|
|
|
|
ClutterStageEGL *stage_egl = CLUTTER_STAGE_EGL (stage_window);
|
|
|
|
|
2010-11-23 11:05:44 -05:00
|
|
|
/* NB: a clip width of 0 means a full stage redraw is required */
|
2010-11-16 08:54:15 -05:00
|
|
|
if (stage_egl->initialized_redraw_clip &&
|
|
|
|
stage_egl->bounding_redraw_clip.width == 0)
|
|
|
|
return TRUE;
|
|
|
|
else
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* A redraw clip represents (in stage coordinates) the bounding box of
|
|
|
|
* something that needs to be redraw. Typically they are added to the
|
|
|
|
* StageWindow as a result of clutter_actor_queue_clipped_redraw() by
|
|
|
|
* actors such as ClutterEGLTexturePixmap. All redraw clips are
|
|
|
|
* discarded after the next paint.
|
|
|
|
*
|
|
|
|
* A NULL stage_clip means the whole stage needs to be redrawn.
|
|
|
|
*
|
|
|
|
* What we do with this information:
|
|
|
|
* - we keep track of the bounding box for all redraw clips
|
|
|
|
* - when we come to redraw; we scissor the redraw to that box and use
|
|
|
|
* glBlitFramebuffer to present the redraw to the front
|
|
|
|
* buffer.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
clutter_stage_egl_add_redraw_clip (ClutterStageWindow *stage_window,
|
|
|
|
ClutterGeometry *stage_clip)
|
|
|
|
{
|
|
|
|
ClutterStageEGL *stage_egl = CLUTTER_STAGE_EGL (stage_window);
|
|
|
|
|
|
|
|
/* If we are already forced to do a full stage redraw then bail early */
|
|
|
|
if (clutter_stage_egl_ignoring_redraw_clips (stage_window))
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* A NULL stage clip means a full stage redraw has been queued and
|
2010-11-23 11:05:44 -05:00
|
|
|
* we keep track of this by setting a zero width
|
2010-11-16 08:54:15 -05:00
|
|
|
* stage_egl->bounding_redraw_clip */
|
|
|
|
if (stage_clip == NULL)
|
|
|
|
{
|
|
|
|
stage_egl->bounding_redraw_clip.width = 0;
|
|
|
|
stage_egl->initialized_redraw_clip = TRUE;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Ignore requests to add degenerate/empty clip rectangles */
|
|
|
|
if (stage_clip->width == 0 || stage_clip->height == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!stage_egl->initialized_redraw_clip)
|
|
|
|
{
|
|
|
|
stage_egl->bounding_redraw_clip.x = stage_clip->x;
|
|
|
|
stage_egl->bounding_redraw_clip.y = stage_clip->y;
|
|
|
|
stage_egl->bounding_redraw_clip.width = stage_clip->width;
|
|
|
|
stage_egl->bounding_redraw_clip.height = stage_clip->height;
|
|
|
|
}
|
|
|
|
else if (stage_egl->bounding_redraw_clip.width > 0)
|
|
|
|
{
|
|
|
|
clutter_geometry_union (&stage_egl->bounding_redraw_clip, stage_clip,
|
|
|
|
&stage_egl->bounding_redraw_clip);
|
|
|
|
}
|
|
|
|
|
|
|
|
stage_egl->initialized_redraw_clip = TRUE;
|
|
|
|
}
|
|
|
|
|
2011-02-04 10:09:41 -05:00
|
|
|
static void
|
|
|
|
clutter_stage_egl_redraw (ClutterStageWindow *stage_window)
|
2010-06-17 17:26:12 -04:00
|
|
|
{
|
2011-02-04 10:09:41 -05:00
|
|
|
ClutterStageEGL *stage_egl = CLUTTER_STAGE_EGL (stage_window);
|
|
|
|
ClutterBackend *backend = clutter_get_default_backend ();
|
|
|
|
ClutterBackendEGL *backend_egl = CLUTTER_BACKEND_EGL (backend);
|
|
|
|
ClutterActor *wrapper;
|
|
|
|
EGLSurface egl_surface;
|
|
|
|
gboolean may_use_clipped_redraw;
|
|
|
|
gboolean use_clipped_redraw;
|
2010-06-17 17:26:12 -04:00
|
|
|
#ifdef COGL_HAS_X11_SUPPORT
|
2011-02-04 10:09:41 -05:00
|
|
|
ClutterStageX11 *stage_x11 = CLUTTER_STAGE_X11 (stage_egl);
|
2010-06-17 17:26:12 -04:00
|
|
|
|
|
|
|
wrapper = CLUTTER_ACTOR (stage_x11->wrapper);
|
|
|
|
egl_surface = stage_egl->egl_surface;
|
|
|
|
#else
|
|
|
|
wrapper = CLUTTER_ACTOR (stage_egl->wrapper);
|
|
|
|
/* Without X we only support one surface and that is associated
|
|
|
|
* with the backend directly instead of the stage */
|
|
|
|
egl_surface = backend_egl->egl_surface;
|
|
|
|
#endif
|
|
|
|
|
2010-11-16 08:54:15 -05:00
|
|
|
if (G_LIKELY (backend_egl->can_blit_sub_buffer) &&
|
2010-11-23 11:05:44 -05:00
|
|
|
/* NB: a zero width clip == full stage redraw */
|
2010-11-16 08:54:15 -05:00
|
|
|
stage_egl->bounding_redraw_clip.width != 0 &&
|
|
|
|
/* some drivers struggle to get going and produce some junk
|
|
|
|
* frames when starting up... */
|
2010-11-30 10:06:12 -05:00
|
|
|
G_LIKELY (stage_egl->frame_count > 3)
|
|
|
|
#ifdef COGL_HAS_X11_SUPPORT
|
2010-11-16 08:54:15 -05:00
|
|
|
/* While resizing a window clipped redraws are disabled to avoid
|
|
|
|
* artefacts. See clutter-event-x11.c:event_translate for a
|
|
|
|
* detailed explanation */
|
2010-11-30 10:06:12 -05:00
|
|
|
&& G_LIKELY (stage_x11->clipped_redraws_cool_off == 0)
|
|
|
|
#endif
|
|
|
|
)
|
2010-11-16 08:54:15 -05:00
|
|
|
may_use_clipped_redraw = TRUE;
|
|
|
|
else
|
|
|
|
may_use_clipped_redraw = FALSE;
|
|
|
|
|
|
|
|
if (may_use_clipped_redraw &&
|
|
|
|
G_LIKELY (!(clutter_paint_debug_flags &
|
|
|
|
CLUTTER_DEBUG_DISABLE_CLIPPED_REDRAWS)))
|
|
|
|
use_clipped_redraw = TRUE;
|
|
|
|
else
|
|
|
|
use_clipped_redraw = FALSE;
|
|
|
|
|
|
|
|
if (use_clipped_redraw)
|
|
|
|
{
|
|
|
|
cogl_clip_push_window_rectangle (stage_egl->bounding_redraw_clip.x,
|
|
|
|
stage_egl->bounding_redraw_clip.y,
|
|
|
|
stage_egl->bounding_redraw_clip.width,
|
|
|
|
stage_egl->bounding_redraw_clip.height);
|
2011-02-09 11:16:57 -05:00
|
|
|
_clutter_stage_do_paint (CLUTTER_STAGE (wrapper),
|
|
|
|
&stage_egl->bounding_redraw_clip);
|
2010-11-16 08:54:15 -05:00
|
|
|
cogl_clip_pop ();
|
|
|
|
}
|
|
|
|
else
|
2011-02-09 11:16:57 -05:00
|
|
|
_clutter_stage_do_paint (CLUTTER_STAGE (wrapper), NULL);
|
2010-11-16 08:54:15 -05:00
|
|
|
|
|
|
|
if (clutter_paint_debug_flags & CLUTTER_DEBUG_REDRAWS &&
|
|
|
|
may_use_clipped_redraw)
|
|
|
|
{
|
|
|
|
ClutterGeometry *clip = &stage_egl->bounding_redraw_clip;
|
|
|
|
static CoglMaterial *outline = NULL;
|
|
|
|
CoglHandle vbo;
|
|
|
|
float x_1 = clip->x;
|
|
|
|
float x_2 = clip->x + clip->width;
|
|
|
|
float y_1 = clip->y;
|
|
|
|
float y_2 = clip->y + clip->height;
|
|
|
|
float quad[8] = {
|
|
|
|
x_1, y_1,
|
|
|
|
x_2, y_1,
|
|
|
|
x_2, y_2,
|
|
|
|
x_1, y_2
|
|
|
|
};
|
|
|
|
CoglMatrix modelview;
|
|
|
|
|
|
|
|
if (outline == NULL)
|
|
|
|
{
|
|
|
|
outline = cogl_material_new ();
|
|
|
|
cogl_material_set_color4ub (outline, 0xff, 0x00, 0x00, 0xff);
|
|
|
|
}
|
|
|
|
|
|
|
|
vbo = cogl_vertex_buffer_new (4);
|
|
|
|
cogl_vertex_buffer_add (vbo,
|
|
|
|
"gl_Vertex",
|
|
|
|
2, /* n_components */
|
|
|
|
COGL_ATTRIBUTE_TYPE_FLOAT,
|
|
|
|
FALSE, /* normalized */
|
|
|
|
0, /* stride */
|
|
|
|
quad);
|
|
|
|
cogl_vertex_buffer_submit (vbo);
|
|
|
|
|
|
|
|
cogl_push_matrix ();
|
|
|
|
cogl_matrix_init_identity (&modelview);
|
2011-02-09 11:16:57 -05:00
|
|
|
_clutter_actor_apply_modelview_transform (wrapper, &modelview);
|
2010-11-16 08:54:15 -05:00
|
|
|
cogl_set_modelview_matrix (&modelview);
|
|
|
|
cogl_set_source (outline);
|
|
|
|
cogl_vertex_buffer_draw (vbo, COGL_VERTICES_MODE_LINE_LOOP,
|
|
|
|
0 , 4);
|
|
|
|
cogl_pop_matrix ();
|
|
|
|
cogl_object_unref (vbo);
|
|
|
|
}
|
|
|
|
|
2010-06-17 17:26:12 -04:00
|
|
|
cogl_flush ();
|
|
|
|
|
2010-11-16 08:54:15 -05:00
|
|
|
/* push on the screen */
|
|
|
|
if (use_clipped_redraw)
|
|
|
|
{
|
|
|
|
ClutterGeometry *clip = &stage_egl->bounding_redraw_clip;
|
|
|
|
ClutterGeometry copy_area;
|
|
|
|
|
|
|
|
CLUTTER_NOTE (BACKEND,
|
|
|
|
"_egl_blit_sub_buffer (surface: %p, "
|
|
|
|
"x: %d, y: %d, "
|
|
|
|
"width: %d, height: %d)",
|
|
|
|
egl_surface,
|
|
|
|
stage_egl->bounding_redraw_clip.x,
|
|
|
|
stage_egl->bounding_redraw_clip.y,
|
|
|
|
stage_egl->bounding_redraw_clip.width,
|
|
|
|
stage_egl->bounding_redraw_clip.height);
|
|
|
|
|
|
|
|
copy_area.x = clip->x;
|
|
|
|
copy_area.y = clip->y;
|
|
|
|
copy_area.width = clip->width;
|
|
|
|
copy_area.height = clip->height;
|
|
|
|
|
|
|
|
CLUTTER_TIMER_START (_clutter_uprof_context, blit_sub_buffer_timer);
|
|
|
|
_clutter_backend_egl_blit_sub_buffer (backend_egl,
|
|
|
|
egl_surface,
|
|
|
|
copy_area.x,
|
|
|
|
copy_area.y,
|
|
|
|
copy_area.width,
|
|
|
|
copy_area.height);
|
|
|
|
CLUTTER_TIMER_STOP (_clutter_uprof_context, blit_sub_buffer_timer);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CLUTTER_NOTE (BACKEND, "eglwapBuffers (display: %p, surface: %p)",
|
|
|
|
backend_egl->edpy,
|
|
|
|
egl_surface);
|
|
|
|
|
|
|
|
CLUTTER_TIMER_START (_clutter_uprof_context, swapbuffers_timer);
|
|
|
|
eglSwapBuffers (backend_egl->edpy, egl_surface);
|
|
|
|
CLUTTER_TIMER_STOP (_clutter_uprof_context, swapbuffers_timer);
|
2011-01-12 17:06:58 -05:00
|
|
|
_cogl_swap_buffers_notify ();
|
2010-11-16 08:54:15 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* reset the redraw clipping for the next paint... */
|
|
|
|
stage_egl->initialized_redraw_clip = FALSE;
|
|
|
|
|
|
|
|
stage_egl->frame_count++;
|
2008-04-23 13:20:59 -04:00
|
|
|
}
|
2011-02-09 11:16:57 -05:00
|
|
|
|
|
|
|
static void
|
|
|
|
clutter_stage_window_iface_init (ClutterStageWindowIface *iface)
|
|
|
|
{
|
|
|
|
#ifdef COGL_HAS_X11_SUPPORT
|
|
|
|
clutter_stage_egl_parent_iface = g_type_interface_peek_parent (iface);
|
|
|
|
|
|
|
|
iface->realize = clutter_stage_egl_realize;
|
|
|
|
iface->unrealize = clutter_stage_egl_unrealize;
|
|
|
|
|
|
|
|
/* the rest is inherited from ClutterStageX11 */
|
|
|
|
|
|
|
|
#else /* COGL_HAS_X11_SUPPORT */
|
|
|
|
|
|
|
|
iface->realize = clutter_stage_egl_realize;
|
|
|
|
iface->unrealize = clutter_stage_egl_unrealize;
|
|
|
|
iface->set_fullscreen = clutter_stage_egl_set_fullscreen;
|
|
|
|
iface->set_title = clutter_stage_egl_set_title;
|
|
|
|
iface->set_cursor_visible = clutter_stage_egl_set_cursor_visible;
|
|
|
|
iface->get_wrapper = clutter_stage_egl_get_wrapper;
|
|
|
|
iface->get_geometry = clutter_stage_egl_get_geometry;
|
|
|
|
iface->resize = clutter_stage_egl_resize;
|
|
|
|
iface->show = clutter_stage_egl_show;
|
|
|
|
iface->hide = clutter_stage_egl_hide;
|
|
|
|
|
|
|
|
#endif /* COGL_HAS_X11_SUPPORT */
|
|
|
|
|
|
|
|
iface->add_redraw_clip = clutter_stage_egl_add_redraw_clip;
|
|
|
|
iface->has_redraw_clips = clutter_stage_egl_has_redraw_clips;
|
|
|
|
iface->ignoring_redraw_clips = clutter_stage_egl_ignoring_redraw_clips;
|
|
|
|
iface->redraw = clutter_stage_egl_redraw;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef COGL_HAS_X11_SUPPORT
|
|
|
|
static void
|
|
|
|
clutter_stage_egl_dispose (GObject *gobject)
|
|
|
|
{
|
|
|
|
G_OBJECT_CLASS (_clutter_stage_egl_parent_class)->dispose (gobject);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_clutter_stage_egl_class_init (ClutterStageEGLClass *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
|
|
|
|
|
|
|
gobject_class->dispose = clutter_stage_egl_dispose;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_clutter_stage_egl_init (ClutterStageEGL *stage)
|
|
|
|
{
|
|
|
|
stage->egl_surface = EGL_NO_SURFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
#else /* COGL_HAS_X11_SUPPORT */
|
|
|
|
|
|
|
|
static void
|
|
|
|
_clutter_stage_egl_class_init (ClutterStageEGLClass *klass)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_clutter_stage_egl_init (ClutterStageEGL *stage)
|
|
|
|
{
|
|
|
|
/* Without X we only support one surface and that is associated
|
|
|
|
* with the backend directly instead of the stage */
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* COGL_HAS_X11_SUPPORT */
|