mirror of
https://github.com/brl/mutter.git
synced 2024-11-10 07:56:14 -05:00
* 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:
parent
ba257b0196
commit
6974c31ad5
@ -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:
|
||||
|
@ -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:
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user