RE: [PyOpenGL-Users] installation (?) problem on irix646
Brought to you by:
mcfletch
From: Mike C. F. <mcf...@ho...> - 2001-09-24 17:41:46
|
Yup, the OpenGLContext docs say requires 3.7, but I suppose I should see about what sub-set of functionality can be provided when regressing to earlier versions. Likely a lot, but apps using missing functionality are going to have problems (obviously). Suppose a mechanism for warning about such things is in order <sigh> :) . BTW, when checking the GLUT docs for version notes, I noticed that even the interlinking isn't there with my IE 5.5 version. Are you testing with IE 5.5 or 6.0 or 5.0? Enjoy, Mike -----Original Message----- From: pyo...@li... [mailto:pyo...@li...]On Behalf Of Tarn Weisner Burton Sent: September 24, 2001 12:35 To: PyOpenGL Mailing List Subject: RE: [PyOpenGL-Users] installation (?) problem on irix646 ... Note to Mike: OpenGLContext should probably check for 3.7 if there isn't a graceful fallback, i.e. ----------------- from OpenGL.GLUT import __api_version__ if __api_version__ < 0xd: print "need 3.7" sys.exit(1) ----------------- for future reference: 0x1=1.0, 0x2=2.0, 0x5=3.0, 0x7=3.1, 0x9=3.4, 0xb=3.6, 0xd=3.7 thanks, Tarn _______________________________________________ PyOpenGL Homepage http://pyopengl.sourceforge.net _______________________________________________ PyOpenGL-Users mailing list PyO...@li... https://lists.sourceforge.net/lists/listinfo/pyopengl-users |