[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: •