我正在为我的 DLL 解决一些绘图包装器,它正在计算一些数组。在这段代码中我需要它来绘制,但我不明白,为什么当我只绑定一次时,它只绘制了 1 个点。但是当我绑定它时(据我所知,我不应该因为记忆而这样做)每个绘画事件,它都会像我期望的那样绘制我的网格。
这是 bindData 的初始状态。
bool mBindData = true;
然后在我的绘图功能中:
GLuint vbo;
if(mBindData){
mBindData = false;
glGenBuffers(1, &vbo);
//getting size of my array of vertexes
int size = this->mModel->GetVboSize() * sizeof(float);
glBindBuffer(GL_ARRAY_BUFFER, vbo);
glBufferData(GL_ARRAY_BUFFER, s2, this->mModel->GetVbo(), GL_STATIC_DRAW);
glBindBuffer(GL_ARRAY_BUFFER, vbo);
glEnableVertexAttribArray(0);
glVertexAttribPointer(
0, // attribute 0. No particular reason for 0, but must match the layout in the shader.
3, // size
GL_FLOAT, // type
GL_FALSE, // normalized?
0, // stride
(void*)0 // array buffer offset
);
}
glDrawArrays(GL_POINTS, 0,this->mModel->GetVboSize());
如果没有
if(mBindData){}
它运作良好。但正如我所说,我确信它不是这样的。
我很感激你能给我的每一个建议。
非常感谢。
EDIT1:我的问题是,当我只绑定一次 vbo 时,为什么它只绘制 1 个点而不是 NxN 点网格。我错过了什么?