Hi

Using Python 3, sys.platform returns "linux" on my machine (whereas Python 2 returns "linux2"). The code in tools.py checks only for linux2. After I patched this line

    if sys.platform == "linux2":

to

    if sys.platform == "linux2" || sys.platform == "linux":

everythink worked out nicely in my project. Was this simply forgotten or is there a particular reason that get_gl_sharing_context_properties is not supported on Python3/linux?

Best, Marko

_______________________________________________
PyOpenCL mailing list
[email protected]
http://lists.tiker.net/listinfo/pyopencl

Reply via email to