mirror of
https://github.com/brl/mutter.git
synced 2024-11-22 16:10:41 -05:00
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:
parent
7ea9e2bcbb
commit
bbdcf5542b
17
ChangeLog
17
ChangeLog
@ -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>
|
||||
|
||||
* 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
|
||||
the GString.
|
||||
|
||||
2007-06-20 ============== 0.3 Release ====================================
|
||||
|
||||
2007-06-29 Matthew Allum <mallum@openedhand.com>
|
||||
|
||||
* clutter/clutter-texture.c: (texture_upload_data):
|
||||
|
29
NEWS
29
NEWS
@ -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
|
||||
|
6
README
6
README
@ -35,6 +35,12 @@ RELEASE NOTES
|
||||
Relevant information for developers with existing Clutter applications
|
||||
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
|
||||
-----------------------------
|
||||
|
||||
|
@ -108,7 +108,7 @@ AC_SUBST(CLUTTER_NO_FPU)
|
||||
|
||||
clutterbackend=glx
|
||||
AC_ARG_WITH([flavour],
|
||||
AC_HELP_STRING([--with-flavour=@<:@glx/egl/sdl@:>@],
|
||||
AC_HELP_STRING([--with-flavour=@<:@glx/eglx/sdl@:>@],
|
||||
[Select the Clutter backend]),
|
||||
clutterbackend=$with_flavour)
|
||||
|
||||
@ -191,9 +191,9 @@ case $clutterbackend in
|
||||
GLX_CFLAGS="$X11_CFLAGS"
|
||||
;;
|
||||
|
||||
egl)
|
||||
eglx)
|
||||
|
||||
CLUTTER_FLAVOUR="egl"
|
||||
CLUTTER_FLAVOUR="eglx"
|
||||
AC_DEFINE([HAVE_CLUTTER_EGL], 1, [Have the EGL backend])
|
||||
|
||||
# We currently assume having egl means also having gles..
|
||||
@ -209,7 +209,7 @@ case $clutterbackend in
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user