On Mon, Apr 14, 2008 at 7:05 AM, Florent <[EMAIL PROTECTED]> 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 [EMAIL PROTECTED]