[clutter] pyclutter code SEGFAULTS

2010-06-07 Thread Ankur Sinha
hi, I'm trying to run this code[1] but it continually segfaults. It worked previously and I really can't recall what's changed. Here's the backtrace. Can someone please point me to the thing that's breaking? Starting program: /usr/bin/python Splash.py [Thread debugging using libthread_db

[clutter] Long-running clutter process with multiple consecutive stages

2010-06-07 Thread Rupert Swarbrick
Hi, I'm trying to set up some lisp bindings to clutter at the moment and there's one thing that doesn't really work yet. In lisp, the model is that you have one long-running process and (especially when developing) you run the 'app' several times. Problem is that I can't get the window to be

Re: [clutter] Long-running clutter process with multiple consecutive stages

2010-06-07 Thread Emmanuele Bassi
On Mon, 2010-06-07 at 22:38 +0100, Rupert Swarbrick wrote: static gboolean on_delete (ClutterStage *stage, ClutterEvent *event, gpointer data) { clutter_actor_destroy (CLUTTER_ACTOR (stage)); clutter_main_quit(); return FALSE; } try not destroying the stage and returning TRUE. right

[clutter] Re: Long-running clutter process with multiple consecutive stages

2010-06-07 Thread Rupert Swarbrick
Emmanuele Bassi eba...@linux.intel.com writes: On Mon, 2010-06-07 at 22:38 +0100, Rupert Swarbrick wrote: static gboolean on_delete (ClutterStage *stage, ClutterEvent *event, gpointer data) { clutter_actor_destroy (CLUTTER_ACTOR (stage)); clutter_main_quit(); return FALSE; } try