2008-04-04 11:01:47 -04:00
|
|
|
INSTALL
|
|
|
|
Makefile
|
|
|
|
Makefile.in
|
|
|
|
aclocal.m4
|
|
|
|
autom4te.cache
|
2008-06-04 09:06:44 -04:00
|
|
|
compile
|
2008-04-04 11:01:47 -04:00
|
|
|
clutter-*.pc
|
|
|
|
clutter.pc
|
|
|
|
.deps
|
|
|
|
.libs
|
2009-02-17 09:02:55 -05:00
|
|
|
*.o
|
2008-04-04 11:01:47 -04:00
|
|
|
*.lo
|
|
|
|
*.la
|
2009-01-29 10:44:11 -05:00
|
|
|
ChangeLog*
|
2008-04-04 11:01:47 -04:00
|
|
|
clutter/clutter-enum-types.[ch]
|
|
|
|
clutter/clutter-marshal.[ch]
|
|
|
|
clutter/clutter-version.h
|
|
|
|
clutter/stamp-*
|
2008-04-25 10:24:25 -04:00
|
|
|
/clutter/clutter-json.h
|
|
|
|
/clutter/cogl/cogl-defines-gl.h
|
|
|
|
/clutter/cogl/cogl-defines-gles.h
|
|
|
|
/clutter/cogl/cogl.h
|
2009-02-28 12:54:27 -05:00
|
|
|
/clutter/cogl/*.pc
|
2008-05-27 13:42:50 -04:00
|
|
|
/clutter/cogl/gles/cogl-fixed-vertex-shader.[ch]
|
|
|
|
/clutter/cogl/gles/cogl-fixed-fragment-shader.[ch]
|
2009-05-13 18:14:24 -04:00
|
|
|
*.gir
|
|
|
|
*.typelib
|
2009-02-21 08:47:02 -05:00
|
|
|
/clutter/json/*.gir
|
2008-04-04 11:01:47 -04:00
|
|
|
cogl-defines.h
|
|
|
|
config.*
|
|
|
|
configure
|
|
|
|
depcomp
|
|
|
|
doc/manual/clutter-manual.xml
|
2008-04-25 10:24:25 -04:00
|
|
|
doc/reference/clutter/clutter-*.txt
|
2008-08-01 11:40:36 -04:00
|
|
|
!/doc/reference/clutter/clutter-sections.txt
|
2008-04-25 10:24:25 -04:00
|
|
|
doc/reference/clutter/html
|
|
|
|
doc/reference/clutter/tmpl
|
|
|
|
doc/reference/clutter/xml
|
|
|
|
doc/reference/clutter/version.xml
|
|
|
|
doc/reference/clutter/clutter.args
|
|
|
|
doc/reference/clutter/clutter.hierarchy
|
|
|
|
doc/reference/clutter/clutter.interfaces
|
|
|
|
doc/reference/clutter/clutter.prerequisites
|
|
|
|
doc/reference/clutter/clutter.signals
|
|
|
|
doc/reference/clutter/*.stamp
|
|
|
|
doc/reference/cogl/cogl-*.txt
|
2008-08-01 11:40:36 -04:00
|
|
|
!/doc/reference/cogl/cogl-sections.txt
|
2008-04-25 10:24:25 -04:00
|
|
|
doc/reference/cogl/html
|
|
|
|
doc/reference/cogl/tmpl
|
|
|
|
doc/reference/cogl/xml
|
|
|
|
doc/reference/cogl/version.xml
|
|
|
|
doc/reference/cogl/cogl.args
|
|
|
|
doc/reference/cogl/cogl.hierarchy
|
|
|
|
doc/reference/cogl/cogl.interfaces
|
|
|
|
doc/reference/cogl/cogl.prerequisites
|
|
|
|
doc/reference/cogl/cogl.signals
|
|
|
|
doc/reference/cogl/*.stamp
|
2009-02-17 10:05:03 -05:00
|
|
|
doltcompile
|
|
|
|
doltlibtool
|
2008-04-04 11:01:47 -04:00
|
|
|
gtk-doc.make
|
|
|
|
install-sh
|
|
|
|
libtool
|
|
|
|
ltmain.sh
|
|
|
|
missing
|
2008-10-28 11:52:06 -04:00
|
|
|
mkinstalldirs
|
2008-11-17 Emmanuele Bassi <ebassi@linux.intel.com>
Bug 1014 - Clutter Animation API Improvements
* clutter/Makefile.am:
* clutter/clutter.h: Update the build
* clutter/clutter-types.h: Add AnimationMode, an enumeration
for easing functions.
* clutter/clutter-alpha.[ch]: Add the :mode property to
control the function bound to an Alpha instance using an
enumeration value. Also add six new alpha functions:
- ease-in, ease-out, ease-in-out
- sine-in, sine-out, sine-in-out
* clutter/clutter-deprecated.h: Deprecate the #defines for
the alpha functions. They will be replaced by entries in the
ClutterAnimationMode.
* clutter/clutter-interval.[ch]: Add ClutterInterval, an
object for defining, validating and computing an interval
between two values.
* clutter/clutter-animation.[ch]: Add ClutterAnimation, an
object responsible for animation the properties of a single
actor along an interval of values. ClutterAnimation memory
management is automatic. A simple wrapper method for
ClutterActor is provided:
clutter_actor_animate()
which will create, or update, an animation for the passed
actor.
* clutter/clutter-debug.h:
* clutter/clutter-main.c: Add a new 'animation' debug note.
* clutter/clutter-script.c: Clean up the alpha functions
whitelist, and add the new functions.
* doc/reference/clutter/Makefile.am:
* doc/reference/clutter/clutter-sections.txt: Update the
API reference.
* doc/reference/clutter/clutter-animation.xml: Renamed to
doc/reference/clutter/clutter-animation-tutorial.xml to
avoid clashes with the ClutterAnimation section.
* doc/reference/clutter/clutter-docs.sgml: Renamed to
doc/reference/clutter/clutter-docs.xml, as it was an XML
file and not a SGML file.
* tests/Makefile.am:
* tests/interactive/Makefile.am:
* tests/interactive/test-animation.c:
* tests/interactive/test-easing.c: Add two tests for the
new simple animation API and the easing functions.
* tests/interactive/test-actors.c:
* tests/interactive/test-behave.c:
* tests/interactive/test-depth.c:
* tests/interactive/test-effects.c:
* tests/interactive/test-layout.c:
* tests/interactive/test-multistage.c:
* tests/interactive/test-paint-wrapper.c:
* tests/interactive/test-rotate.c:
* tests/interactive/test-scale.c:
* tests/interactive/test-texture-quality.c:
* tests/interactive/test-threads.c:
* tests/interactive/test-viewport.c: Update interactive tests
to the deprecations and new alpha API.
2008-11-18 04:50:03 -05:00
|
|
|
stamp-h1
|
|
|
|
/tests/interactive/*.o
|
|
|
|
/tests/conform/*.o
|
|
|
|
/tests/micro-bench/*.o
|
2009-01-29 10:44:11 -05:00
|
|
|
/tests/interactive/test-actor-clone
|
2008-11-17 Emmanuele Bassi <ebassi@linux.intel.com>
Bug 1014 - Clutter Animation API Improvements
* clutter/Makefile.am:
* clutter/clutter.h: Update the build
* clutter/clutter-types.h: Add AnimationMode, an enumeration
for easing functions.
* clutter/clutter-alpha.[ch]: Add the :mode property to
control the function bound to an Alpha instance using an
enumeration value. Also add six new alpha functions:
- ease-in, ease-out, ease-in-out
- sine-in, sine-out, sine-in-out
* clutter/clutter-deprecated.h: Deprecate the #defines for
the alpha functions. They will be replaced by entries in the
ClutterAnimationMode.
* clutter/clutter-interval.[ch]: Add ClutterInterval, an
object for defining, validating and computing an interval
between two values.
* clutter/clutter-animation.[ch]: Add ClutterAnimation, an
object responsible for animation the properties of a single
actor along an interval of values. ClutterAnimation memory
management is automatic. A simple wrapper method for
ClutterActor is provided:
clutter_actor_animate()
which will create, or update, an animation for the passed
actor.
* clutter/clutter-debug.h:
* clutter/clutter-main.c: Add a new 'animation' debug note.
* clutter/clutter-script.c: Clean up the alpha functions
whitelist, and add the new functions.
* doc/reference/clutter/Makefile.am:
* doc/reference/clutter/clutter-sections.txt: Update the
API reference.
* doc/reference/clutter/clutter-animation.xml: Renamed to
doc/reference/clutter/clutter-animation-tutorial.xml to
avoid clashes with the ClutterAnimation section.
* doc/reference/clutter/clutter-docs.sgml: Renamed to
doc/reference/clutter/clutter-docs.xml, as it was an XML
file and not a SGML file.
* tests/Makefile.am:
* tests/interactive/Makefile.am:
* tests/interactive/test-animation.c:
* tests/interactive/test-easing.c: Add two tests for the
new simple animation API and the easing functions.
* tests/interactive/test-actors.c:
* tests/interactive/test-behave.c:
* tests/interactive/test-depth.c:
* tests/interactive/test-effects.c:
* tests/interactive/test-layout.c:
* tests/interactive/test-multistage.c:
* tests/interactive/test-paint-wrapper.c:
* tests/interactive/test-rotate.c:
* tests/interactive/test-scale.c:
* tests/interactive/test-texture-quality.c:
* tests/interactive/test-threads.c:
* tests/interactive/test-viewport.c: Update interactive tests
to the deprecations and new alpha API.
2008-11-18 04:50:03 -05:00
|
|
|
/tests/interactive/test-actors
|
|
|
|
/tests/interactive/test-behave
|
|
|
|
/tests/interactive/test-boxes
|
|
|
|
/tests/interactive/test-depth
|
|
|
|
/tests/interactive/test-effects
|
|
|
|
/tests/interactive/test-entry
|
|
|
|
/tests/interactive/test-events
|
|
|
|
/tests/interactive/test-fbo
|
|
|
|
/tests/interactive/test-fullscreen
|
|
|
|
/tests/interactive/test-grab
|
|
|
|
/tests/interactive/test-model
|
|
|
|
/tests/interactive/test-multistage
|
|
|
|
/tests/interactive/test-offscreen
|
|
|
|
/tests/interactive/test-opacity
|
|
|
|
/tests/interactive/test-perspective
|
|
|
|
/tests/interactive/test-project
|
|
|
|
/tests/interactive/test-rotate
|
|
|
|
/tests/interactive/test-scale
|
|
|
|
/tests/interactive/test-score
|
|
|
|
/tests/interactive/test-script
|
|
|
|
/tests/interactive/test-shader
|
|
|
|
/tests/interactive/test-text
|
|
|
|
/tests/interactive/test-textures
|
|
|
|
/tests/interactive/test-threads
|
|
|
|
/tests/interactive/test-timeline
|
|
|
|
/tests/interactive/test-timeline-dup-frames
|
|
|
|
/tests/interactive/test-timeline-interpolate
|
|
|
|
/tests/interactive/test-timeline-rewind
|
|
|
|
/tests/interactive/test-timeline-smoothness
|
|
|
|
/tests/interactive/test-unproject
|
|
|
|
/tests/interactive/test-viewport
|
2009-01-29 10:44:11 -05:00
|
|
|
/tests/interactive/test-cogl-multitexture
|
2008-11-17 Emmanuele Bassi <ebassi@linux.intel.com>
Bug 1014 - Clutter Animation API Improvements
* clutter/Makefile.am:
* clutter/clutter.h: Update the build
* clutter/clutter-types.h: Add AnimationMode, an enumeration
for easing functions.
* clutter/clutter-alpha.[ch]: Add the :mode property to
control the function bound to an Alpha instance using an
enumeration value. Also add six new alpha functions:
- ease-in, ease-out, ease-in-out
- sine-in, sine-out, sine-in-out
* clutter/clutter-deprecated.h: Deprecate the #defines for
the alpha functions. They will be replaced by entries in the
ClutterAnimationMode.
* clutter/clutter-interval.[ch]: Add ClutterInterval, an
object for defining, validating and computing an interval
between two values.
* clutter/clutter-animation.[ch]: Add ClutterAnimation, an
object responsible for animation the properties of a single
actor along an interval of values. ClutterAnimation memory
management is automatic. A simple wrapper method for
ClutterActor is provided:
clutter_actor_animate()
which will create, or update, an animation for the passed
actor.
* clutter/clutter-debug.h:
* clutter/clutter-main.c: Add a new 'animation' debug note.
* clutter/clutter-script.c: Clean up the alpha functions
whitelist, and add the new functions.
* doc/reference/clutter/Makefile.am:
* doc/reference/clutter/clutter-sections.txt: Update the
API reference.
* doc/reference/clutter/clutter-animation.xml: Renamed to
doc/reference/clutter/clutter-animation-tutorial.xml to
avoid clashes with the ClutterAnimation section.
* doc/reference/clutter/clutter-docs.sgml: Renamed to
doc/reference/clutter/clutter-docs.xml, as it was an XML
file and not a SGML file.
* tests/Makefile.am:
* tests/interactive/Makefile.am:
* tests/interactive/test-animation.c:
* tests/interactive/test-easing.c: Add two tests for the
new simple animation API and the easing functions.
* tests/interactive/test-actors.c:
* tests/interactive/test-behave.c:
* tests/interactive/test-depth.c:
* tests/interactive/test-effects.c:
* tests/interactive/test-layout.c:
* tests/interactive/test-multistage.c:
* tests/interactive/test-paint-wrapper.c:
* tests/interactive/test-rotate.c:
* tests/interactive/test-scale.c:
* tests/interactive/test-texture-quality.c:
* tests/interactive/test-threads.c:
* tests/interactive/test-viewport.c: Update interactive tests
to the deprecations and new alpha API.
2008-11-18 04:50:03 -05:00
|
|
|
/tests/interactive/test-cogl-offscreen
|
|
|
|
/tests/interactive/test-cogl-primitives
|
|
|
|
/tests/interactive/test-cogl-tex-convert
|
|
|
|
/tests/interactive/test-cogl-tex-foreign
|
|
|
|
/tests/interactive/test-cogl-tex-getset
|
|
|
|
/tests/interactive/test-cogl-tex-polygon
|
|
|
|
/tests/interactive/test-cogl-tex-tile
|
|
|
|
/tests/interactive/test-pixmap
|
|
|
|
/tests/interactive/test-stage-read-pixels
|
|
|
|
/tests/interactive/test-clip
|
|
|
|
/tests/interactive/test-layout
|
|
|
|
/tests/interactive/test-random-text
|
|
|
|
/tests/interactive/test-texture-quality
|
|
|
|
/tests/interactive/test-paint-wrapper
|
|
|
|
/tests/interactive/test-devices
|
|
|
|
/tests/interactive/test-label-cache
|
|
|
|
/tests/interactive/test-pick
|
|
|
|
/tests/interactive/test-animation
|
|
|
|
/tests/interactive/test-easing
|
|
|
|
/tests/interactive/test-interactive
|
2008-12-10 18:12:22 -05:00
|
|
|
/tests/interactive/test-binding-pool
|
2009-01-06 19:29:41 -05:00
|
|
|
/tests/interactive/test-text-field
|
2009-01-29 10:44:11 -05:00
|
|
|
/tests/interactive/light0.png
|
|
|
|
/tests/interactive/light1.png
|
2008-11-17 Emmanuele Bassi <ebassi@linux.intel.com>
Bug 1014 - Clutter Animation API Improvements
* clutter/Makefile.am:
* clutter/clutter.h: Update the build
* clutter/clutter-types.h: Add AnimationMode, an enumeration
for easing functions.
* clutter/clutter-alpha.[ch]: Add the :mode property to
control the function bound to an Alpha instance using an
enumeration value. Also add six new alpha functions:
- ease-in, ease-out, ease-in-out
- sine-in, sine-out, sine-in-out
* clutter/clutter-deprecated.h: Deprecate the #defines for
the alpha functions. They will be replaced by entries in the
ClutterAnimationMode.
* clutter/clutter-interval.[ch]: Add ClutterInterval, an
object for defining, validating and computing an interval
between two values.
* clutter/clutter-animation.[ch]: Add ClutterAnimation, an
object responsible for animation the properties of a single
actor along an interval of values. ClutterAnimation memory
management is automatic. A simple wrapper method for
ClutterActor is provided:
clutter_actor_animate()
which will create, or update, an animation for the passed
actor.
* clutter/clutter-debug.h:
* clutter/clutter-main.c: Add a new 'animation' debug note.
* clutter/clutter-script.c: Clean up the alpha functions
whitelist, and add the new functions.
* doc/reference/clutter/Makefile.am:
* doc/reference/clutter/clutter-sections.txt: Update the
API reference.
* doc/reference/clutter/clutter-animation.xml: Renamed to
doc/reference/clutter/clutter-animation-tutorial.xml to
avoid clashes with the ClutterAnimation section.
* doc/reference/clutter/clutter-docs.sgml: Renamed to
doc/reference/clutter/clutter-docs.xml, as it was an XML
file and not a SGML file.
* tests/Makefile.am:
* tests/interactive/Makefile.am:
* tests/interactive/test-animation.c:
* tests/interactive/test-easing.c: Add two tests for the
new simple animation API and the easing functions.
* tests/interactive/test-actors.c:
* tests/interactive/test-behave.c:
* tests/interactive/test-depth.c:
* tests/interactive/test-effects.c:
* tests/interactive/test-layout.c:
* tests/interactive/test-multistage.c:
* tests/interactive/test-paint-wrapper.c:
* tests/interactive/test-rotate.c:
* tests/interactive/test-scale.c:
* tests/interactive/test-texture-quality.c:
* tests/interactive/test-threads.c:
* tests/interactive/test-viewport.c: Update interactive tests
to the deprecations and new alpha API.
2008-11-18 04:50:03 -05:00
|
|
|
/tests/interactive/redhand.png
|
2009-01-29 10:44:11 -05:00
|
|
|
/tests/interactive/redhand_alpha.png
|
2008-11-17 Emmanuele Bassi <ebassi@linux.intel.com>
Bug 1014 - Clutter Animation API Improvements
* clutter/Makefile.am:
* clutter/clutter.h: Update the build
* clutter/clutter-types.h: Add AnimationMode, an enumeration
for easing functions.
* clutter/clutter-alpha.[ch]: Add the :mode property to
control the function bound to an Alpha instance using an
enumeration value. Also add six new alpha functions:
- ease-in, ease-out, ease-in-out
- sine-in, sine-out, sine-in-out
* clutter/clutter-deprecated.h: Deprecate the #defines for
the alpha functions. They will be replaced by entries in the
ClutterAnimationMode.
* clutter/clutter-interval.[ch]: Add ClutterInterval, an
object for defining, validating and computing an interval
between two values.
* clutter/clutter-animation.[ch]: Add ClutterAnimation, an
object responsible for animation the properties of a single
actor along an interval of values. ClutterAnimation memory
management is automatic. A simple wrapper method for
ClutterActor is provided:
clutter_actor_animate()
which will create, or update, an animation for the passed
actor.
* clutter/clutter-debug.h:
* clutter/clutter-main.c: Add a new 'animation' debug note.
* clutter/clutter-script.c: Clean up the alpha functions
whitelist, and add the new functions.
* doc/reference/clutter/Makefile.am:
* doc/reference/clutter/clutter-sections.txt: Update the
API reference.
* doc/reference/clutter/clutter-animation.xml: Renamed to
doc/reference/clutter/clutter-animation-tutorial.xml to
avoid clashes with the ClutterAnimation section.
* doc/reference/clutter/clutter-docs.sgml: Renamed to
doc/reference/clutter/clutter-docs.xml, as it was an XML
file and not a SGML file.
* tests/Makefile.am:
* tests/interactive/Makefile.am:
* tests/interactive/test-animation.c:
* tests/interactive/test-easing.c: Add two tests for the
new simple animation API and the easing functions.
* tests/interactive/test-actors.c:
* tests/interactive/test-behave.c:
* tests/interactive/test-depth.c:
* tests/interactive/test-effects.c:
* tests/interactive/test-layout.c:
* tests/interactive/test-multistage.c:
* tests/interactive/test-paint-wrapper.c:
* tests/interactive/test-rotate.c:
* tests/interactive/test-scale.c:
* tests/interactive/test-texture-quality.c:
* tests/interactive/test-threads.c:
* tests/interactive/test-viewport.c: Update interactive tests
to the deprecations and new alpha API.
2008-11-18 04:50:03 -05:00
|
|
|
/tests/interactive/test-script.json
|
2009-01-22 11:55:51 -05:00
|
|
|
/tests/interactive/test-clutter-cairo-flowers
|
2009-05-14 03:32:46 -04:00
|
|
|
/tests/conform/stamp-test-conformance
|
2009-01-29 10:44:11 -05:00
|
|
|
/tests/conform/test-anchors
|
2008-11-17 Emmanuele Bassi <ebassi@linux.intel.com>
Bug 1014 - Clutter Animation API Improvements
* clutter/Makefile.am:
* clutter/clutter.h: Update the build
* clutter/clutter-types.h: Add AnimationMode, an enumeration
for easing functions.
* clutter/clutter-alpha.[ch]: Add the :mode property to
control the function bound to an Alpha instance using an
enumeration value. Also add six new alpha functions:
- ease-in, ease-out, ease-in-out
- sine-in, sine-out, sine-in-out
* clutter/clutter-deprecated.h: Deprecate the #defines for
the alpha functions. They will be replaced by entries in the
ClutterAnimationMode.
* clutter/clutter-interval.[ch]: Add ClutterInterval, an
object for defining, validating and computing an interval
between two values.
* clutter/clutter-animation.[ch]: Add ClutterAnimation, an
object responsible for animation the properties of a single
actor along an interval of values. ClutterAnimation memory
management is automatic. A simple wrapper method for
ClutterActor is provided:
clutter_actor_animate()
which will create, or update, an animation for the passed
actor.
* clutter/clutter-debug.h:
* clutter/clutter-main.c: Add a new 'animation' debug note.
* clutter/clutter-script.c: Clean up the alpha functions
whitelist, and add the new functions.
* doc/reference/clutter/Makefile.am:
* doc/reference/clutter/clutter-sections.txt: Update the
API reference.
* doc/reference/clutter/clutter-animation.xml: Renamed to
doc/reference/clutter/clutter-animation-tutorial.xml to
avoid clashes with the ClutterAnimation section.
* doc/reference/clutter/clutter-docs.sgml: Renamed to
doc/reference/clutter/clutter-docs.xml, as it was an XML
file and not a SGML file.
* tests/Makefile.am:
* tests/interactive/Makefile.am:
* tests/interactive/test-animation.c:
* tests/interactive/test-easing.c: Add two tests for the
new simple animation API and the easing functions.
* tests/interactive/test-actors.c:
* tests/interactive/test-behave.c:
* tests/interactive/test-depth.c:
* tests/interactive/test-effects.c:
* tests/interactive/test-layout.c:
* tests/interactive/test-multistage.c:
* tests/interactive/test-paint-wrapper.c:
* tests/interactive/test-rotate.c:
* tests/interactive/test-scale.c:
* tests/interactive/test-texture-quality.c:
* tests/interactive/test-threads.c:
* tests/interactive/test-viewport.c: Update interactive tests
to the deprecations and new alpha API.
2008-11-18 04:50:03 -05:00
|
|
|
/tests/conform/test-conformance
|
|
|
|
/tests/conform/test-conformance-results.xml
|
|
|
|
/tests/conform/test-conformance-results.html
|
2008-11-24 10:44:16 -05:00
|
|
|
/tests/conform/test-conformance-results-dn.xml
|
|
|
|
/tests/conform/test-conformance-results-dn.html
|
2008-12-17 08:59:56 -05:00
|
|
|
/tests/conform/test-entry-append-some
|
|
|
|
/tests/conform/test-entry-cursor
|
|
|
|
/tests/conform/test-entry-delete-chars
|
|
|
|
/tests/conform/test-entry-delete-text
|
|
|
|
/tests/conform/test-entry-empty
|
|
|
|
/tests/conform/test-entry-event
|
|
|
|
/tests/conform/test-entry-insert
|
|
|
|
/tests/conform/test-entry-prepend-some
|
|
|
|
/tests/conform/test-entry-set-empty
|
|
|
|
/tests/conform/test-entry-set-text
|
|
|
|
/tests/conform/test-entry-utf8-validation
|
|
|
|
/tests/conform/test-fixed-constants
|
|
|
|
/tests/conform/test-initial-state
|
|
|
|
/tests/conform/test-label-cache
|
|
|
|
/tests/conform/test-mapped
|
|
|
|
/tests/conform/test-path
|
|
|
|
/tests/conform/test-pick
|
|
|
|
/tests/conform/test-realized
|
|
|
|
/tests/conform/test-rect-set-color
|
|
|
|
/tests/conform/test-rect-set-size
|
|
|
|
/tests/conform/test-show-on-set-parent
|
|
|
|
/tests/conform/test-timeline
|
|
|
|
/tests/conform/test-timeline-dup-frames
|
|
|
|
/tests/conform/test-timeline-interpolate
|
|
|
|
/tests/conform/test-timeline-rewind
|
|
|
|
/tests/conform/test-timeline-smoothness
|
|
|
|
/tests/conform/test-label-opacity
|
|
|
|
/tests/conform/test-mesh-contiguous
|
|
|
|
/tests/conform/test-mesh-interleved
|
|
|
|
/tests/conform/test-mesh-mutability
|
|
|
|
/tests/conform/test-paint-opacity
|
|
|
|
/tests/conform/test-rectangle-opacity
|
|
|
|
/tests/conform/test-backface-culling
|
|
|
|
/tests/conform/test-binding-pool
|
2009-01-13 09:05:35 -05:00
|
|
|
/tests/conform/test-text-append-some
|
|
|
|
/tests/conform/test-text-cache
|
|
|
|
/tests/conform/test-text-cursor
|
|
|
|
/tests/conform/test-text-delete-chars
|
|
|
|
/tests/conform/test-text-delete-text
|
|
|
|
/tests/conform/test-text-empty
|
|
|
|
/tests/conform/test-text-event
|
|
|
|
/tests/conform/test-text-get-chars
|
|
|
|
/tests/conform/test-text-insert
|
|
|
|
/tests/conform/test-text-password-char
|
|
|
|
/tests/conform/test-text-prepend-some
|
|
|
|
/tests/conform/test-text-set-empty
|
|
|
|
/tests/conform/test-text-set-text
|
|
|
|
/tests/conform/test-text-utf8-validation
|
2009-01-22 11:55:51 -05:00
|
|
|
/tests/conform/test-vertex-buffer-contiguous
|
|
|
|
/tests/conform/test-vertex-buffer-interleved
|
|
|
|
/tests/conform/test-vertex-buffer-mutability
|
2009-02-14 06:47:53 -05:00
|
|
|
/tests/conform/test-list-model-iterate
|
|
|
|
/tests/conform/test-list-model-populate
|
2009-04-29 10:41:12 -04:00
|
|
|
/tests/conform/test-list-model-filter
|
2009-02-14 06:47:53 -05:00
|
|
|
/tests/conform/test-npot-texture
|
2009-02-21 08:47:02 -05:00
|
|
|
/tests/conform/redhand.png
|
2009-01-13 09:05:35 -05:00
|
|
|
/tests/micro-bench/test-glyph-perf
|
2008-11-17 Emmanuele Bassi <ebassi@linux.intel.com>
Bug 1014 - Clutter Animation API Improvements
* clutter/Makefile.am:
* clutter/clutter.h: Update the build
* clutter/clutter-types.h: Add AnimationMode, an enumeration
for easing functions.
* clutter/clutter-alpha.[ch]: Add the :mode property to
control the function bound to an Alpha instance using an
enumeration value. Also add six new alpha functions:
- ease-in, ease-out, ease-in-out
- sine-in, sine-out, sine-in-out
* clutter/clutter-deprecated.h: Deprecate the #defines for
the alpha functions. They will be replaced by entries in the
ClutterAnimationMode.
* clutter/clutter-interval.[ch]: Add ClutterInterval, an
object for defining, validating and computing an interval
between two values.
* clutter/clutter-animation.[ch]: Add ClutterAnimation, an
object responsible for animation the properties of a single
actor along an interval of values. ClutterAnimation memory
management is automatic. A simple wrapper method for
ClutterActor is provided:
clutter_actor_animate()
which will create, or update, an animation for the passed
actor.
* clutter/clutter-debug.h:
* clutter/clutter-main.c: Add a new 'animation' debug note.
* clutter/clutter-script.c: Clean up the alpha functions
whitelist, and add the new functions.
* doc/reference/clutter/Makefile.am:
* doc/reference/clutter/clutter-sections.txt: Update the
API reference.
* doc/reference/clutter/clutter-animation.xml: Renamed to
doc/reference/clutter/clutter-animation-tutorial.xml to
avoid clashes with the ClutterAnimation section.
* doc/reference/clutter/clutter-docs.sgml: Renamed to
doc/reference/clutter/clutter-docs.xml, as it was an XML
file and not a SGML file.
* tests/Makefile.am:
* tests/interactive/Makefile.am:
* tests/interactive/test-animation.c:
* tests/interactive/test-easing.c: Add two tests for the
new simple animation API and the easing functions.
* tests/interactive/test-actors.c:
* tests/interactive/test-behave.c:
* tests/interactive/test-depth.c:
* tests/interactive/test-effects.c:
* tests/interactive/test-layout.c:
* tests/interactive/test-multistage.c:
* tests/interactive/test-paint-wrapper.c:
* tests/interactive/test-rotate.c:
* tests/interactive/test-scale.c:
* tests/interactive/test-texture-quality.c:
* tests/interactive/test-threads.c:
* tests/interactive/test-viewport.c: Update interactive tests
to the deprecations and new alpha API.
2008-11-18 04:50:03 -05:00
|
|
|
/tests/micro-bench/test-text
|
2009-05-13 18:14:24 -04:00
|
|
|
/tests/micro-bench/test-picking
|
2008-11-24 10:44:16 -05:00
|
|
|
/tests/tools/disable-npots.sh
|
2008-10-28 11:52:06 -04:00
|
|
|
/clutter/x11/clutter-x11-enum-types.[ch]
|
|
|
|
/clutter/x11/stamp-clutter-x11-enum-types.h
|
|
|
|
/po/Makefile.in.in
|
|
|
|
/po/POTFILES
|
2009-01-06 19:29:41 -05:00
|
|
|
/po/*.pot
|
2008-12-21 16:12:43 -05:00
|
|
|
*.swn
|
|
|
|
*.swo
|
2008-11-17 Emmanuele Bassi <ebassi@linux.intel.com>
Bug 1014 - Clutter Animation API Improvements
* clutter/Makefile.am:
* clutter/clutter.h: Update the build
* clutter/clutter-types.h: Add AnimationMode, an enumeration
for easing functions.
* clutter/clutter-alpha.[ch]: Add the :mode property to
control the function bound to an Alpha instance using an
enumeration value. Also add six new alpha functions:
- ease-in, ease-out, ease-in-out
- sine-in, sine-out, sine-in-out
* clutter/clutter-deprecated.h: Deprecate the #defines for
the alpha functions. They will be replaced by entries in the
ClutterAnimationMode.
* clutter/clutter-interval.[ch]: Add ClutterInterval, an
object for defining, validating and computing an interval
between two values.
* clutter/clutter-animation.[ch]: Add ClutterAnimation, an
object responsible for animation the properties of a single
actor along an interval of values. ClutterAnimation memory
management is automatic. A simple wrapper method for
ClutterActor is provided:
clutter_actor_animate()
which will create, or update, an animation for the passed
actor.
* clutter/clutter-debug.h:
* clutter/clutter-main.c: Add a new 'animation' debug note.
* clutter/clutter-script.c: Clean up the alpha functions
whitelist, and add the new functions.
* doc/reference/clutter/Makefile.am:
* doc/reference/clutter/clutter-sections.txt: Update the
API reference.
* doc/reference/clutter/clutter-animation.xml: Renamed to
doc/reference/clutter/clutter-animation-tutorial.xml to
avoid clashes with the ClutterAnimation section.
* doc/reference/clutter/clutter-docs.sgml: Renamed to
doc/reference/clutter/clutter-docs.xml, as it was an XML
file and not a SGML file.
* tests/Makefile.am:
* tests/interactive/Makefile.am:
* tests/interactive/test-animation.c:
* tests/interactive/test-easing.c: Add two tests for the
new simple animation API and the easing functions.
* tests/interactive/test-actors.c:
* tests/interactive/test-behave.c:
* tests/interactive/test-depth.c:
* tests/interactive/test-effects.c:
* tests/interactive/test-layout.c:
* tests/interactive/test-multistage.c:
* tests/interactive/test-paint-wrapper.c:
* tests/interactive/test-rotate.c:
* tests/interactive/test-scale.c:
* tests/interactive/test-texture-quality.c:
* tests/interactive/test-threads.c:
* tests/interactive/test-viewport.c: Update interactive tests
to the deprecations and new alpha API.
2008-11-18 04:50:03 -05:00
|
|
|
*.swp
|
|
|
|
*~
|
2008-12-21 16:12:43 -05:00
|
|
|
*.orig
|
|
|
|
*.rej
|