table of contents
| GLBINDBUFFERBASE(3G) | [FIXME: manual] | GLBINDBUFFERBASE(3G) | 
NAME¶
glBindBufferBase - bind a buffer object to an indexed buffer targetC SPECIFICATION¶
void
  glBindBufferBase(GLenum target,
  GLuint index, GLuint buffer);
PARAMETERS¶
targetSpecify the target of the bind operation.
  target must be one of GL_ATOMIC_COUNTER_BUFFER,
  GL_TRANSFORM_FEEDBACK_BUFFER or GL_UNIFORM_BUFFER.
index
Specify the index of the binding point within
  the array specified by target.
buffer
The name of a buffer object to bind to the
  specified binding point.
DESCRIPTION¶
NOTES¶
Calling glBindBufferBase is equivalent to calling glBindBufferRange() with offset zero and size equal to the size of the buffer.ERRORS¶
SEE ALSO¶
COPYRIGHT¶
Copyright © 2010-2011 Khronos Group. This material may be distributed subject to the terms and conditions set forth in the Open Publication License, v 1.0, 8 June 1999. http://opencontent.org/openpub/.| 05/30/2012 | [FIXME: source] |