qxLib
|
Base class for buffers with binding points. More...
#include <buffer_binding_point_base.h>
Public Member Functions | |
virtual void | BindBase (GLuint nIndex) |
Bind a buffer object to an indexed buffer target from shader. More... | |
![]() | |
virtual QX_DECL_IBUFFER void | MemBarrier () |
Defines a barrier ordering memory transactions. | |
virtual void | Allocate (GLsizeiptr nSize, const void *pData=nullptr, GLenum eUsage=GL_DYNAMIC_DRAW) |
Allocate memory for the buffer. More... | |
virtual void | Update (const void *pData, GLsizeiptr nSize, GLintptr nOffset=0) |
Update buffer. More... | |
![]() | |
virtual void | Generate ()=0 |
Generate buffer object. | |
virtual void | Bind () const =0 |
Bind a named buffer object. | |
virtual void | Unbind () const =0 |
Unbind a named buffer object. | |
virtual GLuint | GetBufferName () const =0 |
Get the object's name - the reference to the object. More... | |
virtual bool | IsGenerated () const =0 |
Is this buffer generated. More... | |
Additional Inherited Members | |
![]() | |
virtual GLenum | GetBufferType () const =0 |
Get buffer type. More... | |
virtual GLbitfield | GetBarrierBit () const =0 |
Get buffer type barrier bit. More... | |
Base class for buffers with binding points.
~
Definition at line 25 of file buffer_binding_point_base.h.
|
inlinevirtual |
Bind a buffer object to an indexed buffer target from shader.
nIndex | - index |
Definition at line 13 of file buffer_binding_point_base.inl.