On Mon, Apr 14, 2008 at 7:05 AM, Florent <fthiery_at_gmail.com> wrote:
> > (clutter-test.py:2033): ClutterGLX-WARNING **: failed to bind GLXGetProcAddress or GLXGetProcAddressARB
> > The C examples all work fine.
>
> This is a known nvidia issue, but it shouldn't make your app segfault
> (i use pyclutter in production on nvidia); the problem is mainly that
> you won't be able to use shaders and PBOs, and as said previously,
> this is a python issue that is still to solve.
Index: clutter/cogl/gl/cogl.c
===================================================================
--- clutter/cogl/gl/cogl.c (revision 2486)
+++ clutter/cogl/gl/cogl.c (working copy)
@@ -115,7 +115,7 @@
if (get_proc_func == NULL && dlhand == NULL)
{
- dlhand = dlopen (NULL, RTLD_LAZY);
+ dlhand = dlopen ("libGL.so", RTLD_LAZY);
if (dlhand)
{
Is that the correct solution? It doesn't complain about not finding
the symbol any longer when using PyClutter on my machine.
Blake
-- Blake Ramsdell | http://www.blakeramsdell.com -- To unsubscribe send a mail to clutter+unsubscribe_at_o-hand.comReceived on Mon Apr 14 2008 - 17:29:26 EDT
This archive was generated by hypermail 2.2.0 : Mon Apr 14 2008 - 18:00:18 EDT