You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Do I have to assume that pyopengltk uses double buffering by default ?
Can it be changed during initialization ?
If this is not possible, is a combination of glDrawBuffer(GL_FRONT) and glReadBuffer(GL_Front) fully supported (mimicking single buffering) ?
The text was updated successfully, but these errors were encountered:
There is a double buffer flag that is passed by default, I assume it would be no problem to make it optional, along with various other things in #3. A pull request is welcome.
For glDrawBuffer: you might need opengl >= 2.0 and there are situations where you do not have this (windows RDP?).
Do I have to assume that pyopengltk uses double buffering by default ?
Can it be changed during initialization ?
If this is not possible, is a combination of glDrawBuffer(GL_FRONT) and glReadBuffer(GL_Front) fully supported (mimicking single buffering) ?
The text was updated successfully, but these errors were encountered: