tags:

views:

292

answers:

2

Please tell me what is the QT equivalent function for glutswapbuffers()..

A: 

Probably QGLWidget::swapBuffers. Totally untested.

Matthew Flaschen
+1  A: 
QGLContext::swapBuffers()

or, if you're working with a widget:

QGLWidget::swapBuffers()
MartinodF