Binder

PyQt5.QtGui.QOpenGLVertexArrayObject.Binder

Description

The Binder class is a convenience class to help with the binding and releasing of OpenGL Vertex Array Objects.

Binder is a simple convenience class that can be used to assist with the binding and releasing of QOpenGLVertexArrayObject instances. This class is to QOpenGLVertexArrayObject as QMutexLocker is to QMutex.

This class implements the RAII principle which helps to ensure behavior in complex code or in the presence of exceptions.

The constructor of this class accepts a QOpenGLVertexArrayObject (VAO) as an argument and attempts to bind the VAO, calling create() if necessary. The destructor of this class calls release() which unbinds the VAO.

If needed the VAO can be temporarily unbound with the release() function and bound once more with rebind().

Methods

__init__(QOpenGLVertexArrayObject)

TODO


__enter__() → object

TODO


__exit__(object, object, object)

TODO


rebind()

TODO


release()

TODO