1
0
Fork 0

2007-07-06 Matthew Allum <mallum@openedhand.com>

* NEWS:
        * README:
        Updates for upcoming 0.3.1 release.
        * clutter/egl/Makefile.am:
        * clutter/egl/clutter-backend-egl.c:
        * clutter/egl/clutter-backend-egl.h:
        * clutter/egl/clutter-egl.h:
        * clutter/egl/clutter-event-egl.c:
        * clutter/egl/clutter-stage-egl.c:
        * clutter/egl/clutter-stage-egl.h:
        * configure.ac:
        Move egl -> eglx
This commit is contained in:
Matthew Allum 2007-07-06 11:40:59 +00:00
parent 7ea9e2bcbb
commit bbdcf5542b
11 changed files with 55 additions and 5 deletions

View file

@ -1,3 +1,18 @@
2007-07-06 Matthew Allum <mallum@openedhand.com>
* NEWS:
* README:
Updates for upcoming 0.3.1 release.
* clutter/egl/Makefile.am:
* clutter/egl/clutter-backend-egl.c:
* clutter/egl/clutter-backend-egl.h:
* clutter/egl/clutter-egl.h:
* clutter/egl/clutter-event-egl.c:
* clutter/egl/clutter-stage-egl.c:
* clutter/egl/clutter-stage-egl.h:
* configure.ac:
Move egl -> eglx
2007-07-06 Matthew Allum <mallum@openedhand.com> 2007-07-06 Matthew Allum <mallum@openedhand.com>
* clutter/clutter-box.c: (clutter_box_pick): * clutter/clutter-box.c: (clutter_box_pick):
@ -112,6 +127,8 @@
Check if unichar == 0, and if so, return, as it will cause a delete in Check if unichar == 0, and if so, return, as it will cause a delete in
the GString. the GString.
2007-06-20 ============== 0.3 Release ====================================
2007-06-29 Matthew Allum <mallum@openedhand.com> 2007-06-29 Matthew Allum <mallum@openedhand.com>
* clutter/clutter-texture.c: (texture_upload_data): * clutter/clutter-texture.c: (texture_upload_data):

29
NEWS
View file

@ -1,4 +1,31 @@
Clutter 0.3 () Clutter 0.3.1 (29/06/2007)
========================
* List of changes between 0.3 and 0.3.1
o EGL backends
o ClutterGroup now returns correct size when a child is removed.
o Missing redhand.png added to distro tarball (fixing tests that require
it)
o Fix picking in ClutterBox
o Rectangle border creation fixed.
o Fix overflow in Exponential Alpha funcs.
o Many API documentation fixes and improvements.
o ClutterEffect cleanups.
o ClutterEntry cleanups.
o Check for versioned XFixes library (GLX backend).
o More X error traps in GLX backend.
Clutter 0.3 (29/06/2007)
======================== ========================
* List of changes between 0.2.3 and 0.3 * List of changes between 0.2.3 and 0.3

6
README
View file

@ -35,6 +35,12 @@ RELEASE NOTES
Relevant information for developers with existing Clutter applications Relevant information for developers with existing Clutter applications
wanting to port to newer releases; wanting to port to newer releases;
Release Notes for Clutter 0.3.1
-------------------------------
* clutter_actor_apply_transform_to_point() parameters changed to use
ClutterVertices.
Release Notes for Clutter 0.3 Release Notes for Clutter 0.3
----------------------------- -----------------------------

View file

@ -108,7 +108,7 @@ AC_SUBST(CLUTTER_NO_FPU)
clutterbackend=glx clutterbackend=glx
AC_ARG_WITH([flavour], AC_ARG_WITH([flavour],
AC_HELP_STRING([--with-flavour=@<:@glx/egl/sdl@:>@], AC_HELP_STRING([--with-flavour=@<:@glx/eglx/sdl@:>@],
[Select the Clutter backend]), [Select the Clutter backend]),
clutterbackend=$with_flavour) clutterbackend=$with_flavour)
@ -191,9 +191,9 @@ case $clutterbackend in
GLX_CFLAGS="$X11_CFLAGS" GLX_CFLAGS="$X11_CFLAGS"
;; ;;
egl) eglx)
CLUTTER_FLAVOUR="egl" CLUTTER_FLAVOUR="eglx"
AC_DEFINE([HAVE_CLUTTER_EGL], 1, [Have the EGL backend]) AC_DEFINE([HAVE_CLUTTER_EGL], 1, [Have the EGL backend])
# We currently assume having egl means also having gles.. # We currently assume having egl means also having gles..
@ -209,7 +209,7 @@ case $clutterbackend in
EGL_CFLAGS="$EGL_CFLAGS $X11_CFLAGS" EGL_CFLAGS="$EGL_CFLAGS $X11_CFLAGS"
;; ;;
*) AC_MSG_ERROR([Invalid backend for Clutter: use glx or egl]) *) AC_MSG_ERROR([Invalid backend for Clutter: use glx,sdl or eglx])
;; ;;
esac esac