-
auxiliary buffers
When I query glGetIntegerv(GL_AUX_BUFFERS) I get the answer 0. How do I ask for using aux buffers (i.e. get more than 0 from my hardware)?
-
Advanced Member
Frequent Contributor
Re: auxiliary buffers
Under GLFW you use:
glfwOpenWindowHint( GLFW_AUX_BUFFERS, n )
...honestly, I have not tried it on my HW. You can get the number of aux buffers like this:
num_aux_buffers = glfwGetWindowParam( GLFW_AUX_BUFFERS );
-
Re: auxiliary buffers
does anyone know how to do this in glut?
-
Advanced Member
Frequent Contributor
Re: auxiliary buffers
Time to switch toolkits? 
Looking at glutInitDisplayString: http://pyopengl.sourceforge.net/docu...ing.3GLUT.html
...I can not find a way to specify auxiliary buffers with GLUT. (?) glutGet does not support it either. Maybe I'm looking at old docs?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules