pacoccino / mandelbulber

Automatically exported from code.google.com/p/mandelbulber
0 stars 0 forks source link

Code review request #6

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
This fixes lock-up issues with gtk for me. The timer callback happens on a 
different thread it seems, so before you can call gtk+ from that handler, like 
MainRender() does, you need to gdk_threads_enter() and *_leave().

Original issue reported on code.google.com by marius.s...@gmail.com on 10 Sep 2010 at 11:02

GoogleCodeExporter commented 8 years ago
You are right. I have missed this. It is better to have gdk_threads_enter() and 
*_leave() in this place.

Original comment by buddhi1...@gmail.com on 13 Sep 2010 at 11:14