Tkinter OpenGL context in Python

前端 未结 1 511
你的背包
你的背包 2021-02-01 17:19

I need to create an OpenGL context in Tkinker, for using it with PyOpenGL Python module.

Tkinker doesn\'t natively support OpenGL context, but I found this page on PyOpe

相关标签:
1条回答
  • 2021-02-01 17:25

    PyOpenGL provides Python bindings for the Tk OpenGL widget (Togl) but not Togl itself, that is why you had to download it. Now, to install Togl is easy but there isn't a tool ready to perform the task. Since the Python bindings will use Tcl to load the Togl module, the widget needs to live in one of the directories present in Tcl's auto_path, which is where Tcl looks for loading libraries. What you can do is start a Tcl interpreter, tclsh, and check which are these directories by doing puts $auto_path. In my case I copied the directory lib/Togl2.0 (inside the Togl's .tar.gz) to /opt/local/lib/tcl8.5. You can also extend auto_path to look for other directories, but I'm not covering that here.

    Then I tested using Python 2.7 on Mac OSX. Doing import OpenGL.Tk tries to load Togl, too bad it fails. The reason is that Togl comes precompiled for i386, since I built Python as a universal binary all I did was run it as arch -i386 python2.7, and now import OpenGL.Tk works.

    0 讨论(0)
提交回复
热议问题