【发布时间】:2010-09-23 08:53:58
【问题描述】:
对于其他缓冲区,有如下功能:
glVertexArrayVertexAttribOffsetEXT(
this->handle, // vao handle
vbo.getHandle(), // vbo handle
index, // specifies the index of the generic vertex attribute to be modified.
size, // number of components per generic vertex attribute
vbo.getType(), // specifies the data type of each component in the array
normalized, // specifies whether fixed-point data values should be normalized
stride, // specifies the byte offset between consecutive generic vertex attributes
offset // specifies a pointer to the first component of the first generic vertex attribute in the array
);
但我找不到将元素缓冲区绑定到 vao 的方法。还是我错过了什么?
PS:添加vertex-array-object和direct-state-access标签有意义吗?
【问题讨论】:
标签: opengl vertex-buffer