Re: [clutter] Confusing child actors behavior

2010-03-24 Thread Neil Roberts
Hi (sorry if I've sent this twice, I'm having a bit of trouble with my mail client) On Tue, 23 Mar 2010 14:00:50 -0500, Uday Verma uday.ka...@gmail.com wrote: I am trying to animate a sub-actor inside a ClutterActor but I can't seem to be able to do so. I have an actor A which contains

[clutter] Clutter stage transparency

2010-03-24 Thread Sean V. Kelley
With Clutter 1.2.x and if you're running with a compositor engine on X11, then I should be able to set the opacity using clutter_actor_set_opacity() on the stage, just like you can on every other actor. However, are there limitations such as the video card or the particular compositor being used?

Re: [clutter] Clutter stage transparency

2010-03-24 Thread Bastian Winkler
You also have to set the :use-alpha property http://www.clutter-project.org/docs/clutter/stable/ClutterStage.html#ClutterStage--use-alpha so long :wq buz On Wed, Mar 24, 2010 at 02:25:30PM -0700, Sean V. Kelley wrote: With Clutter 1.2.x and if you're running with a compositor engine on X11,

Re: [clutter] Clutter stage transparency

2010-03-24 Thread Emmanuele Bassi
On Wed, 2010-03-24 at 22:59 +0100, Bastian Winkler wrote: You also have to set the :use-alpha property http://www.clutter-project.org/docs/clutter/stable/ClutterStage.html#ClutterStage--use-alpha and call: clutter_x11_set_use_argb_visuals (TRUE); before calling clutter_init(), since: •