* clutter/clutter-stage.c (clutter_stage_class_init): Added the

'perspective' property. All of the machinery was there to
	implement the property but somehow the call that actually installs
	it was missing.
This commit is contained in:
Neil Roberts 2008-07-30 21:09:58 +00:00
parent ba257b0196
commit 6974c31ad5
2 changed files with 24 additions and 0 deletions

View File

@ -1,3 +1,10 @@
2008-07-30 Neil Roberts <neil@o-hand.com>
* clutter/clutter-stage.c (clutter_stage_class_init): Added the
'perspective' property. All of the machinery was there to
implement the property but somehow the call that actually installs
it was missing.
2008-07-30 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter-fixed.h:

View File

@ -570,6 +570,23 @@ clutter_stage_class_init (ClutterStageClass *klass)
"The color of the main stage",
CLUTTER_TYPE_COLOR,
CLUTTER_PARAM_READWRITE));
/**
* ClutterStage:perspective:
*
* The parameters used for the perspective projection from 3D
* coordinates to 2D
*
* Since: 0.8.2
*/
g_object_class_install_property
(gobject_class, PROP_PERSPECTIVE,
g_param_spec_boxed ("perspective",
"Perspective",
"Perspective projection parameters",
CLUTTER_TYPE_PERSPECTIVE,
CLUTTER_PARAM_READWRITE));
/**
* ClutterStage:title:
*