2007-11-29 Matthew Allum <mallum@openedhand.com>

* clutter/clutter-main.c: (generate_enter_leave_events):
        Minor formatting tweak.
        * configure.ac:
        Typo fix from Damien Lespiau (via mailing list)
This commit is contained in:
Matthew Allum 2007-11-28 23:57:26 +00:00
parent 9800eb0639
commit aebf79829a
3 changed files with 10 additions and 3 deletions

View File

@ -1,3 +1,10 @@
2007-11-29 Matthew Allum <mallum@openedhand.com>
* clutter/clutter-main.c: (generate_enter_leave_events):
Minor formatting tweak.
* configure.ac:
Typo fix from Damien Lespiau (via mailing list)
2007-11-28 Emmanuele Bassi <ebassi@openedhand.com> 2007-11-28 Emmanuele Bassi <ebassi@openedhand.com>
Add more introspection capabilities to the base model class Add more introspection capabilities to the base model class

View File

@ -1278,7 +1278,7 @@ generate_enter_leave_events (ClutterEvent *event)
cev.crossing.related = g_object_ref (motion_current_actor); cev.crossing.related = g_object_ref (motion_current_actor);
g_queue_push_head (context->events_queue, g_queue_push_head (context->events_queue,
clutter_event_copy (&cev)); clutter_event_copy (&cev));
cev.crossing.type = CLUTTER_ENTER; cev.crossing.type = CLUTTER_ENTER;
cev.crossing.time = event->any.time; cev.crossing.time = event->any.time;
@ -1289,7 +1289,7 @@ generate_enter_leave_events (ClutterEvent *event)
cev.crossing.related = g_object_ref (motion_last_actor); cev.crossing.related = g_object_ref (motion_last_actor);
g_queue_push_head (context->events_queue, g_queue_push_head (context->events_queue,
clutter_event_copy (&cev)); clutter_event_copy (&cev));
} }
} }
motion_last_actor = motion_current_actor; motion_last_actor = motion_current_actor;

View File

@ -231,7 +231,7 @@ case $clutterbackend in
CLUTTER_COGL="gles" CLUTTER_COGL="gles"
AC_DEFINE([HAVE_COGL_GLES], 1, [Have GL/ES for rendering]) AC_DEFINE([HAVE_COGL_GLES], 1, [Have GL/ES for rendering])
AC_CHECK_HEADERS([clutter_gl_header],, AC_CHECK_HEADERS([$clutter_gl_header],,
[AC_MSG_ERROR([Unable to locate require GL header])]) [AC_MSG_ERROR([Unable to locate require GL header])])
AC_CHECK_HEADERS([GLES/egl.h],, AC_CHECK_HEADERS([GLES/egl.h],,
[AC_MSG_ERROR([Unable to locate required GLES headers])]) [AC_MSG_ERROR([Unable to locate required GLES headers])])