2007-07-06 Matthew Allum <mallum@openedhand.com>
* clutter/eglx/Makefile.am: * clutter/eglx/clutter-egl.h: * clutter/eglx/clutter-event-egl.c: * clutter/eglx/clutter-stage-egl.c: Rename clutter-egl.h -> clutter-eglx.h * NEWS: * README: Add info re EGL split.
This commit is contained in:
parent
051a76c155
commit
817cdbe2be
12
ChangeLog
12
ChangeLog
@ -1,3 +1,15 @@
|
||||
2007-07-06 Matthew Allum <mallum@openedhand.com>
|
||||
|
||||
* clutter/eglx/Makefile.am:
|
||||
* clutter/eglx/clutter-egl.h:
|
||||
* clutter/eglx/clutter-event-egl.c:
|
||||
* clutter/eglx/clutter-stage-egl.c:
|
||||
Rename clutter-egl.h -> clutter-eglx.h
|
||||
|
||||
* NEWS:
|
||||
* README:
|
||||
Add info re EGL split.
|
||||
|
||||
2007-07-06 Matthew Allum <mallum@openedhand.com>
|
||||
|
||||
* clutter/Makefile.am:
|
||||
|
5
NEWS
5
NEWS
@ -2,7 +2,10 @@ Clutter 0.3.1 (29/06/2007)
|
||||
========================
|
||||
|
||||
* List of changes between 0.3 and 0.3.1
|
||||
o EGL backends
|
||||
o EGL. There are now 2 experimental EGL backends;
|
||||
- 'eglx', the former EGL on X11 implementation (now renamed)
|
||||
- 'eglnative', a new EGL 'native' backend which supporting non
|
||||
X11 EGL implementations (i.e framebuffer).
|
||||
|
||||
o ClutterGroup now returns correct size when a child is removed.
|
||||
|
||||
|
5
README
5
README
@ -41,6 +41,11 @@ Release Notes for Clutter 0.3.1
|
||||
* clutter_actor_apply_transform_to_point() parameters changed to use
|
||||
ClutterVertices.
|
||||
|
||||
* New 'Native API' backend expects EGL implementation to provide a
|
||||
CreateNativeWindow() API call.
|
||||
|
||||
* Exisiting X11 based egl backend public API calls now prefixed eglx.
|
||||
|
||||
Release Notes for Clutter 0.3
|
||||
-----------------------------
|
||||
|
||||
|
@ -1,4 +1,5 @@
|
||||
libclutterincludedir = $(includedir)/clutter-@CLUTTER_MAJORMINOR@/clutter
|
||||
libclutterincludedir = $(includedir)/clutter-@CLUTTER_API_VERSION@/clutter
|
||||
libclutterinclude_HEADERS = clutter-eglx.h
|
||||
|
||||
INCLUDES = \
|
||||
-DG_LOG_DOMAIN=\"ClutterEGL\" \
|
||||
@ -16,4 +17,5 @@ libclutter_eglx_la_SOURCES = \
|
||||
clutter-backend-egl.c \
|
||||
clutter-event-egl.c \
|
||||
clutter-stage-egl.h \
|
||||
clutter-stage-egl.c
|
||||
clutter-stage-egl.c \
|
||||
clutter-eglx.h
|
||||
|
@ -23,7 +23,7 @@
|
||||
|
||||
#include "clutter-stage-egl.h"
|
||||
#include "clutter-backend-egl.h"
|
||||
#include "clutter-egl.h"
|
||||
#include "clutter-eglx.h"
|
||||
|
||||
#include "../clutter-backend.h"
|
||||
#include "../clutter-event.h"
|
||||
|
@ -1,7 +1,7 @@
|
||||
#include "config.h"
|
||||
|
||||
#include "clutter-stage-egl.h"
|
||||
#include "clutter-egl.h"
|
||||
#include "clutter-eglx.h"
|
||||
|
||||
#include "../clutter-main.h"
|
||||
#include "../clutter-feature.h"
|
||||
|
Loading…
Reference in New Issue
Block a user