Bugs item #3316474, was opened at 2011-06-15 00:40
Message generated for change (Comment added) made by przemoli
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=105988&aid=3316474&group_id=5988
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: GL
Group: v3.0.0
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Mike C. Fletcher (mcfletch)
Summary: glBegin, glColor*, etc. are not marked as deprecated.
Initial Comment:
I set "ONLY_FORWARD_COMPATIBLE = True", however many deprecated functions such as glBegin, glColor* were still loaded and able to be called.
I think "src/generateraw.py" doesn't consider the OpenGL 3.1 deprecation.
----------------------------------------------------------------------
Comment By: Przemysaw Lib (przemoli)
Date: 2011-06-20 15:47
Message:
How did you initialized opengl context? With glut? What OGL version?
Try this code (assuming you want to have 3,1 ogl):
glutInitContextVersion(3, 1)
glutInitContextFlags(GLUT_FORWARD_COMPATIBLE)
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=105988&aid=3316474&group_id=5988
|