1
0
Fork 0
A repository that has original sources for patches used in the Arch User Repository package called "mutter-performance". https://aur.archlinux.org/packages/mutter-performance
Find a file
Emmanuele Bassi 3c2defee9d 2007-06-07 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter-container.[ch]: Add a generic actor container
	interface, for actors to implement without subclassing ClutterGroup.

	* clutter/clutter-group.[ch]: Make ClutterGroup implement the
	ClutterContainer interface, and deprecate the colliding methods.

	* clutter/clutter-layout.[ch]: Add extended layout interface.
	Actors and containers requiring or honouring complex layout
	management should implement this interface and provide at least
	one of the available layout types: width for height, height for
	width, natural size, iterative size request.

	* clutter/clutter-label.c: A ClutterLabel requires height for
	width layout management, so it implements the ClutterLayout
	interface.

	* clutter/Makefile.am: Add new files to the build.

	* tests/*.c:
	* examples/*.c: Update tests and examples code to use the
	new ClutterContainer API instead of ClutterGroup.
2007-06-07 14:41:35 +00:00
clutter 2007-06-07 Emmanuele Bassi <ebassi@openedhand.com> 2007-06-07 14:41:35 +00:00
doc 2007-06-07 Emmanuele Bassi <ebassi@openedhand.com> 2007-06-07 14:41:35 +00:00
examples 2007-06-07 Emmanuele Bassi <ebassi@openedhand.com> 2007-06-07 14:41:35 +00:00
tests 2007-06-07 Emmanuele Bassi <ebassi@openedhand.com> 2007-06-07 14:41:35 +00:00
AUTHORS documentation for fixed point API 2007-01-17 16:00:00 +00:00
autogen.sh Merge gobject-branch into trunk 2006-05-29 08:59:36 +00:00
ChangeLog 2007-06-07 Emmanuele Bassi <ebassi@openedhand.com> 2007-06-07 14:41:35 +00:00
clutter.doap 2007-01-18 Matthew Allum <mallum@openedhand.com> 2007-01-18 13:37:37 +00:00
clutter.pc.in removed ClutterReal; added clutter-units 2007-05-22 09:31:40 +00:00
configure.ac 2007-05-31 Matthew Allum <mallum@openedhand.com> 2007-05-30 23:16:58 +00:00
COPYING Merge gobject-branch into trunk 2006-05-29 08:59:36 +00:00
Makefile.am 2007-05-25 Matthew Allum <mallum@openedhand.com> 2007-05-25 10:56:09 +00:00
NEWS update NEWS with latest bug fixed 2007-01-16 15:03:29 +00:00
README 2006-08-30 Jorn Baayen <jorn@openedhand.com> 2006-08-30 13:48:48 +00:00
TODO 2007-05-31 Matthew Allum <mallum@openedhand.com> 2007-05-30 23:43:13 +00:00

Clutter README.
===============

Clutter aims to give a nice easy GObject based API for creating fast,
mainly 2D single window stylalised applications such as media box
UI's, presentaions, kiosk style apps etc. It uses OpenGL for rendering.

Its not meant to be a full featured GUI toolkit for regular desktop
apps nor provide a general interface to *all* openGL functionality.

It currently uses fairly low end GL functionality with an aim to still
work well on open source graphics drivers as well as possibly making
an eventual GL ES port feasable.

Clutter currently requires GLib >= 2.8, GdkPixbuf and OpenGL >= 1.2.
Its also recommended you have some kind of working hardware OpenGL on
your target system.

Clutter is LGPL licensed.

If you want to hack on and improve clutter check the TODO file.