2007-10-12 04:17:00 -04:00
|
|
|
#ifdef HAVE_CONFIG_H
|
2007-03-22 14:21:59 -04:00
|
|
|
#include "config.h"
|
2007-10-12 04:17:00 -04:00
|
|
|
#endif
|
2007-03-22 14:21:59 -04:00
|
|
|
|
|
|
|
#include "clutter-backend-egl.h"
|
|
|
|
#include "clutter-stage-egl.h"
|
|
|
|
#include "../clutter-private.h"
|
|
|
|
#include "../clutter-main.h"
|
2007-03-27 17:09:11 -04:00
|
|
|
#include "../clutter-debug.h"
|
2007-03-22 14:21:59 -04:00
|
|
|
|
2007-05-31 08:35:36 -04:00
|
|
|
static ClutterBackendEGL *backend_singleton = NULL;
|
2007-03-22 14:21:59 -04:00
|
|
|
|
2007-03-27 17:09:11 -04:00
|
|
|
/* options */
|
|
|
|
static gchar *clutter_display_name = NULL;
|
|
|
|
static gint clutter_screen = 0;
|
|
|
|
|
|
|
|
/* X error trap */
|
|
|
|
static int TrappedErrorCode = 0;
|
|
|
|
static int (*old_error_handler) (Display *, XErrorEvent *);
|
|
|
|
|
2007-05-31 08:35:36 -04:00
|
|
|
G_DEFINE_TYPE (ClutterBackendEGL, clutter_backend_egl, CLUTTER_TYPE_BACKEND);
|
2007-03-22 14:21:59 -04:00
|
|
|
|
|
|
|
static gboolean
|
|
|
|
clutter_backend_egl_pre_parse (ClutterBackend *backend,
|
|
|
|
GError **error)
|
|
|
|
{
|
2007-03-27 17:09:11 -04:00
|
|
|
const gchar *env_string;
|
|
|
|
|
|
|
|
/* we don't fail here if DISPLAY is not set, as the user
|
|
|
|
* might pass the --display command line switch
|
|
|
|
*/
|
|
|
|
env_string = g_getenv ("DISPLAY");
|
|
|
|
if (env_string)
|
|
|
|
{
|
|
|
|
clutter_display_name = g_strdup (env_string);
|
|
|
|
env_string = NULL;
|
|
|
|
}
|
|
|
|
|
2007-03-22 14:21:59 -04:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
clutter_backend_egl_post_parse (ClutterBackend *backend,
|
|
|
|
GError **error)
|
|
|
|
{
|
2007-05-31 08:35:36 -04:00
|
|
|
ClutterBackendEGL *backend_egl = CLUTTER_BACKEND_EGL (backend);
|
2007-03-27 17:09:11 -04:00
|
|
|
|
|
|
|
if (clutter_display_name)
|
|
|
|
{
|
|
|
|
backend_egl->xdpy = XOpenDisplay (clutter_display_name);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_set_error (error, CLUTTER_INIT_ERROR,
|
|
|
|
CLUTTER_INIT_ERROR_BACKEND,
|
|
|
|
"Unable to open display. You have to set the DISPLAY "
|
|
|
|
"environment variable, or use the --display command "
|
|
|
|
"line argument");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (backend_egl->xdpy)
|
|
|
|
{
|
2007-04-27 20:37:11 -04:00
|
|
|
EGLBoolean status;
|
2007-08-02 05:58:18 -04:00
|
|
|
double dpi;
|
2007-04-27 20:37:11 -04:00
|
|
|
|
2007-03-27 17:09:11 -04:00
|
|
|
CLUTTER_NOTE (MISC, "Getting the X screen");
|
|
|
|
|
|
|
|
if (clutter_screen == 0)
|
2007-04-19 11:26:28 -04:00
|
|
|
backend_egl->xscreen = DefaultScreenOfDisplay (backend_egl->xdpy);
|
2007-03-27 17:09:11 -04:00
|
|
|
else
|
2007-04-19 11:26:28 -04:00
|
|
|
backend_egl->xscreen = ScreenOfDisplay (backend_egl->xdpy,
|
|
|
|
clutter_screen);
|
2007-03-27 17:09:11 -04:00
|
|
|
|
2007-04-19 11:26:28 -04:00
|
|
|
backend_egl->xscreen_num = XScreenNumberOfScreen (backend_egl->xscreen);
|
2007-03-27 17:09:11 -04:00
|
|
|
backend_egl->xwin_root = RootWindow (backend_egl->xdpy,
|
2007-04-19 11:26:28 -04:00
|
|
|
backend_egl->xscreen_num);
|
2007-10-12 04:17:00 -04:00
|
|
|
|
2007-03-27 17:09:11 -04:00
|
|
|
backend_egl->display_name = g_strdup (clutter_display_name);
|
2007-04-19 11:26:28 -04:00
|
|
|
|
2007-09-27 17:38:38 -04:00
|
|
|
backend_egl->edpy = eglGetDisplay((NativeDisplayType)backend_egl->xdpy);
|
2007-04-27 20:37:11 -04:00
|
|
|
|
2007-08-02 05:58:18 -04:00
|
|
|
dpi = (((double) DisplayHeight (backend_egl->xdpy, backend_egl->xscreen_num) * 25.4)
|
|
|
|
/ (double) DisplayHeightMM (backend_egl->xdpy, backend_egl->xscreen_num));
|
|
|
|
clutter_backend_set_resolution (backend, dpi);
|
|
|
|
|
2007-10-12 04:17:00 -04:00
|
|
|
status = eglInitialize(backend_egl->edpy,
|
|
|
|
&backend_egl->egl_version_major,
|
2007-04-27 20:37:11 -04:00
|
|
|
&backend_egl->egl_version_minor);
|
|
|
|
|
|
|
|
if (status != EGL_TRUE)
|
|
|
|
{
|
|
|
|
g_set_error (error, CLUTTER_INIT_ERROR,
|
|
|
|
CLUTTER_INIT_ERROR_BACKEND,
|
|
|
|
"Unable to Initialize EGL");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2007-03-27 17:09:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
g_free (clutter_display_name);
|
2007-10-12 04:17:00 -04:00
|
|
|
|
2007-04-27 20:37:11 -04:00
|
|
|
CLUTTER_NOTE (BACKEND, "X Display `%s' [%p] opened (screen:%d, root:%u)",
|
2007-03-27 17:09:11 -04:00
|
|
|
backend_egl->display_name,
|
|
|
|
backend_egl->xdpy,
|
2007-04-19 11:26:28 -04:00
|
|
|
backend_egl->xscreen_num,
|
2007-03-27 17:09:11 -04:00
|
|
|
(unsigned int) backend_egl->xwin_root);
|
|
|
|
|
2007-04-27 20:37:11 -04:00
|
|
|
CLUTTER_NOTE (BACKEND, "EGL Reports version %i.%i",
|
2007-10-12 04:17:00 -04:00
|
|
|
backend_egl->egl_version_major,
|
2007-04-27 20:37:11 -04:00
|
|
|
backend_egl->egl_version_minor);
|
|
|
|
|
2007-03-22 14:21:59 -04:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
clutter_backend_egl_init_stage (ClutterBackend *backend,
|
|
|
|
GError **error)
|
|
|
|
{
|
2007-05-31 08:35:36 -04:00
|
|
|
ClutterBackendEGL *backend_egl = CLUTTER_BACKEND_EGL (backend);
|
2007-03-27 17:09:11 -04:00
|
|
|
|
|
|
|
if (!backend_egl->stage)
|
|
|
|
{
|
2007-05-31 08:35:36 -04:00
|
|
|
ClutterStageEGL *stage_egl;
|
2007-03-27 17:09:11 -04:00
|
|
|
ClutterActor *stage;
|
|
|
|
|
|
|
|
stage = g_object_new (CLUTTER_TYPE_STAGE_EGL, NULL);
|
|
|
|
|
|
|
|
/* copy backend data into the stage */
|
|
|
|
stage_egl = CLUTTER_STAGE_EGL (stage);
|
|
|
|
stage_egl->xdpy = backend_egl->xdpy;
|
|
|
|
stage_egl->xwin_root = backend_egl->xwin_root;
|
2007-04-19 11:26:28 -04:00
|
|
|
stage_egl->xscreen = backend_egl->xscreen_num;
|
2007-03-27 17:09:11 -04:00
|
|
|
|
|
|
|
g_object_set_data (G_OBJECT (stage), "clutter-backend", backend);
|
|
|
|
|
|
|
|
backend_egl->stage = g_object_ref_sink (stage);
|
|
|
|
}
|
|
|
|
|
|
|
|
clutter_actor_realize (backend_egl->stage);
|
|
|
|
if (!CLUTTER_ACTOR_IS_REALIZED (backend_egl->stage))
|
|
|
|
{
|
|
|
|
g_set_error (error, CLUTTER_INIT_ERROR,
|
|
|
|
CLUTTER_INIT_ERROR_INTERNAL,
|
|
|
|
"Unable to realize the main stage");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2007-03-22 14:21:59 -04:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clutter_backend_egl_init_events (ClutterBackend *backend)
|
|
|
|
{
|
2007-03-27 17:09:11 -04:00
|
|
|
_clutter_events_init (backend);
|
2007-03-22 14:21:59 -04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2007-03-27 17:09:11 -04:00
|
|
|
static const GOptionEntry entries[] =
|
|
|
|
{
|
|
|
|
{
|
|
|
|
"display", 0,
|
|
|
|
G_OPTION_FLAG_IN_MAIN,
|
|
|
|
G_OPTION_ARG_STRING, &clutter_display_name,
|
|
|
|
"X display to use", "DISPLAY"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"screen", 0,
|
|
|
|
G_OPTION_FLAG_IN_MAIN,
|
|
|
|
G_OPTION_ARG_INT, &clutter_screen,
|
|
|
|
"X screen to use", "SCREEN"
|
|
|
|
},
|
|
|
|
{ NULL }
|
|
|
|
};
|
|
|
|
|
2007-05-28 14:49:34 -04:00
|
|
|
static void
|
|
|
|
clutter_backend_egl_redraw (ClutterBackend *backend)
|
|
|
|
{
|
2007-05-31 08:35:36 -04:00
|
|
|
ClutterBackendEGL *backend_egl = CLUTTER_BACKEND_EGL (backend);
|
|
|
|
ClutterStageEGL *stage_egl;
|
2007-05-28 14:49:34 -04:00
|
|
|
|
|
|
|
stage_egl = CLUTTER_STAGE_EGL(backend_egl->stage);
|
|
|
|
|
|
|
|
clutter_actor_paint (CLUTTER_ACTOR(stage_egl));
|
|
|
|
|
|
|
|
/* Why this paint is done in backend as likely GL windowing system
|
|
|
|
* specific calls, like swapping buffers.
|
|
|
|
*/
|
|
|
|
if (stage_egl->xwin)
|
|
|
|
{
|
|
|
|
/* clutter_feature_wait_for_vblank (); */
|
2007-06-29 07:54:31 -04:00
|
|
|
eglSwapBuffers (backend_egl->edpy, stage_egl->egl_surface);
|
2007-05-28 14:49:34 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
eglWaitGL ();
|
|
|
|
CLUTTER_GLERR ();
|
|
|
|
}
|
|
|
|
}
|
2007-03-27 17:09:11 -04:00
|
|
|
|
2007-03-22 14:21:59 -04:00
|
|
|
static void
|
|
|
|
clutter_backend_egl_add_options (ClutterBackend *backend,
|
|
|
|
GOptionGroup *group)
|
|
|
|
{
|
2007-03-27 17:09:11 -04:00
|
|
|
g_option_group_add_entries (group, entries);
|
2007-03-22 14:21:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static ClutterActor *
|
|
|
|
clutter_backend_egl_get_stage (ClutterBackend *backend)
|
|
|
|
{
|
2007-05-31 08:35:36 -04:00
|
|
|
ClutterBackendEGL *backend_egl = CLUTTER_BACKEND_EGL (backend);
|
2007-04-27 20:37:11 -04:00
|
|
|
|
|
|
|
return backend_egl->stage;
|
2007-03-22 14:21:59 -04:00
|
|
|
}
|
|
|
|
|
2007-03-27 17:09:11 -04:00
|
|
|
static void
|
|
|
|
clutter_backend_egl_finalize (GObject *gobject)
|
|
|
|
{
|
2007-05-31 08:35:36 -04:00
|
|
|
ClutterBackendEGL *backend_egl = CLUTTER_BACKEND_EGL (gobject);
|
2007-03-27 17:09:11 -04:00
|
|
|
|
|
|
|
g_free (backend_egl->display_name);
|
|
|
|
|
|
|
|
XCloseDisplay (backend_egl->xdpy);
|
|
|
|
|
|
|
|
if (backend_singleton)
|
|
|
|
backend_singleton = NULL;
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (clutter_backend_egl_parent_class)->finalize (gobject);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clutter_backend_egl_dispose (GObject *gobject)
|
|
|
|
{
|
2007-05-31 08:35:36 -04:00
|
|
|
ClutterBackendEGL *backend_egl = CLUTTER_BACKEND_EGL (gobject);
|
2007-03-27 17:09:11 -04:00
|
|
|
|
|
|
|
_clutter_events_uninit (CLUTTER_BACKEND (backend_egl));
|
|
|
|
|
|
|
|
if (backend_egl->stage)
|
|
|
|
{
|
2007-07-24 15:03:04 -04:00
|
|
|
clutter_actor_destroy (backend_egl->stage);
|
2007-03-27 17:09:11 -04:00
|
|
|
backend_egl->stage = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (clutter_backend_egl_parent_class)->dispose (gobject);
|
|
|
|
}
|
|
|
|
|
|
|
|
static GObject *
|
|
|
|
clutter_backend_egl_constructor (GType gtype,
|
|
|
|
guint n_params,
|
|
|
|
GObjectConstructParam *params)
|
|
|
|
{
|
|
|
|
GObjectClass *parent_class;
|
|
|
|
GObject *retval;
|
|
|
|
|
|
|
|
if (!backend_singleton)
|
|
|
|
{
|
|
|
|
parent_class = G_OBJECT_CLASS (clutter_backend_egl_parent_class);
|
|
|
|
retval = parent_class->constructor (gtype, n_params, params);
|
|
|
|
|
|
|
|
backend_singleton = CLUTTER_BACKEND_EGL (retval);
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_warning ("Attempting to create a new backend object. This should "
|
|
|
|
"never happen, so we return the singleton instance.");
|
2007-10-12 04:17:00 -04:00
|
|
|
|
2007-03-27 17:09:11 -04:00
|
|
|
return g_object_ref (backend_singleton);
|
|
|
|
}
|
|
|
|
|
2007-07-26 16:08:09 -04:00
|
|
|
static ClutterFeatureFlags
|
|
|
|
clutter_backend_egl_get_features (ClutterBackend *backend)
|
|
|
|
{
|
|
|
|
/* We can actually resize too */
|
|
|
|
return CLUTTER_FEATURE_STAGE_CURSOR;
|
|
|
|
}
|
|
|
|
|
2007-03-22 14:21:59 -04:00
|
|
|
static void
|
2007-05-31 08:35:36 -04:00
|
|
|
clutter_backend_egl_class_init (ClutterBackendEGLClass *klass)
|
2007-03-22 14:21:59 -04:00
|
|
|
{
|
2007-03-27 17:09:11 -04:00
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
2007-03-22 14:21:59 -04:00
|
|
|
ClutterBackendClass *backend_class = CLUTTER_BACKEND_CLASS (klass);
|
|
|
|
|
2007-03-27 17:09:11 -04:00
|
|
|
gobject_class->constructor = clutter_backend_egl_constructor;
|
|
|
|
gobject_class->dispose = clutter_backend_egl_dispose;
|
|
|
|
gobject_class->finalize = clutter_backend_egl_finalize;
|
|
|
|
|
2007-05-28 14:49:34 -04:00
|
|
|
backend_class->pre_parse = clutter_backend_egl_pre_parse;
|
|
|
|
backend_class->post_parse = clutter_backend_egl_post_parse;
|
|
|
|
backend_class->init_stage = clutter_backend_egl_init_stage;
|
2007-03-22 14:21:59 -04:00
|
|
|
backend_class->init_events = clutter_backend_egl_init_events;
|
2007-05-28 14:49:34 -04:00
|
|
|
backend_class->get_stage = clutter_backend_egl_get_stage;
|
2007-03-22 14:21:59 -04:00
|
|
|
backend_class->add_options = clutter_backend_egl_add_options;
|
2007-05-28 14:49:34 -04:00
|
|
|
backend_class->redraw = clutter_backend_egl_redraw;
|
2007-07-26 16:08:09 -04:00
|
|
|
backend_class->get_features = clutter_backend_egl_get_features;
|
2007-03-22 14:21:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2007-05-31 08:35:36 -04:00
|
|
|
clutter_backend_egl_init (ClutterBackendEGL *backend_egl)
|
2007-03-22 14:21:59 -04:00
|
|
|
{
|
2007-04-19 11:26:06 -04:00
|
|
|
ClutterBackend *backend = CLUTTER_BACKEND (backend_egl);
|
2007-04-27 20:37:11 -04:00
|
|
|
|
2007-05-10 08:49:34 -04:00
|
|
|
/* FIXME: get from xsettings */
|
2007-08-02 05:58:18 -04:00
|
|
|
clutter_backend_set_resolution (backend, 96.0);
|
2007-05-10 08:49:34 -04:00
|
|
|
clutter_backend_set_double_click_time (backend, 250);
|
|
|
|
clutter_backend_set_double_click_distance (backend, 5);
|
2007-03-22 14:21:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
GType
|
|
|
|
_clutter_backend_impl_get_type (void)
|
|
|
|
{
|
|
|
|
return clutter_backend_egl_get_type ();
|
|
|
|
}
|
2007-03-27 17:09:11 -04:00
|
|
|
|
|
|
|
static int
|
|
|
|
error_handler(Display *xdpy,
|
|
|
|
XErrorEvent *error)
|
|
|
|
{
|
|
|
|
TrappedErrorCode = error->error_code;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2007-07-06 09:56:01 -04:00
|
|
|
* clutter_eglx_trap_x_errors:
|
2007-03-27 17:09:11 -04:00
|
|
|
*
|
|
|
|
* FIXME
|
|
|
|
*
|
|
|
|
* Since: 0.4
|
|
|
|
*/
|
|
|
|
void
|
2007-07-06 09:56:01 -04:00
|
|
|
clutter_eglx_trap_x_errors (void)
|
2007-03-27 17:09:11 -04:00
|
|
|
{
|
|
|
|
TrappedErrorCode = 0;
|
|
|
|
old_error_handler = XSetErrorHandler (error_handler);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2007-07-06 09:56:01 -04:00
|
|
|
* clutter_eglx_untrap_x_errors:
|
2007-03-27 17:09:11 -04:00
|
|
|
*
|
|
|
|
* FIXME
|
|
|
|
*
|
|
|
|
* Return value: FIXME
|
|
|
|
*
|
|
|
|
* Since: 0.4
|
|
|
|
*/
|
|
|
|
gint
|
2007-07-06 09:56:01 -04:00
|
|
|
clutter_eglx_untrap_x_errors (void)
|
2007-03-27 17:09:11 -04:00
|
|
|
{
|
|
|
|
XSetErrorHandler (old_error_handler);
|
|
|
|
|
|
|
|
return TrappedErrorCode;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2007-07-06 09:56:01 -04:00
|
|
|
* clutter_eglx_get_default_xdisplay:
|
2007-10-12 04:17:00 -04:00
|
|
|
*
|
2007-06-29 07:54:31 -04:00
|
|
|
* Returns the default X Display
|
2007-03-27 17:09:11 -04:00
|
|
|
*
|
2007-06-29 07:54:31 -04:00
|
|
|
* Return value: A Display pointer
|
2007-03-27 17:09:11 -04:00
|
|
|
*
|
|
|
|
* Since: 0.4
|
|
|
|
*/
|
|
|
|
Display *
|
2007-07-06 09:56:01 -04:00
|
|
|
clutter_eglx_get_default_xdisplay (void)
|
2007-03-27 17:09:11 -04:00
|
|
|
{
|
|
|
|
if (!backend_singleton)
|
|
|
|
{
|
|
|
|
g_critical ("EGL backend has not been initialised");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return backend_singleton->xdpy;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2007-07-06 09:56:01 -04:00
|
|
|
* clutter_eglx_get_default_screen:
|
2007-10-12 04:17:00 -04:00
|
|
|
*
|
2007-03-27 17:09:11 -04:00
|
|
|
* FIXME
|
|
|
|
*
|
|
|
|
* Return value: FIXME
|
|
|
|
*
|
|
|
|
* Since: 0.4
|
|
|
|
*/
|
|
|
|
gint
|
2007-07-06 09:56:01 -04:00
|
|
|
clutter_eglx_get_default_screen (void)
|
2007-03-27 17:09:11 -04:00
|
|
|
{
|
|
|
|
if (!backend_singleton)
|
|
|
|
{
|
|
|
|
g_critical ("EGL backend has not been initialised");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2007-04-19 11:26:28 -04:00
|
|
|
return backend_singleton->xscreen_num;
|
2007-03-27 17:09:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2007-07-06 09:56:01 -04:00
|
|
|
* clutter_eglx_get_default_root_window:
|
2007-10-12 04:17:00 -04:00
|
|
|
*
|
2007-03-27 17:09:11 -04:00
|
|
|
* FIXME
|
|
|
|
*
|
|
|
|
* Return value: FIXME
|
|
|
|
*
|
|
|
|
* Since: 0.4
|
|
|
|
*/
|
|
|
|
Window
|
2007-07-06 09:56:01 -04:00
|
|
|
clutter_eglx_get_default_root_window (void)
|
2007-03-27 17:09:11 -04:00
|
|
|
{
|
|
|
|
if (!backend_singleton)
|
|
|
|
{
|
|
|
|
g_critical ("EGL backend has not been initialised");
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
return backend_singleton->xwin_root;
|
|
|
|
}
|
|
|
|
|
2007-06-29 07:54:31 -04:00
|
|
|
/**
|
|
|
|
* clutter_egl_display
|
2007-10-12 04:17:00 -04:00
|
|
|
*
|
2007-06-29 07:54:31 -04:00
|
|
|
* Gets the current EGLDisplay.
|
|
|
|
*
|
|
|
|
* Return value: an EGLDisplay
|
|
|
|
*
|
|
|
|
* Since: 0.4
|
|
|
|
*/
|
2007-03-27 17:09:11 -04:00
|
|
|
EGLDisplay
|
2007-07-06 09:56:01 -04:00
|
|
|
clutter_eglx_display (void)
|
2007-03-27 17:09:11 -04:00
|
|
|
{
|
2007-06-29 07:54:31 -04:00
|
|
|
return backend_singleton->edpy;
|
2007-03-27 17:09:11 -04:00
|
|
|
}
|