Module: Mesa Branch: master Commit: a0549f6634c3573bad5544ad28a208f25c7e4644 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=a0549f6634c3573bad5544ad28a208f25c7e4644
Author: Michal Krol <[email protected]> Date: Wed Sep 23 20:24:35 2009 +0200 progs/perf: Actually bind the newly created vbo. --- progs/perf/vbo.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/progs/perf/vbo.c b/progs/perf/vbo.c index a9d4102..b326c05 100644 --- a/progs/perf/vbo.c +++ b/progs/perf/vbo.c @@ -147,6 +147,7 @@ CreateDrawDestroyVBO(unsigned count) GLuint vbo; /* create/load */ glGenBuffersARB(1, &vbo); + glBindBufferARB(GL_ARRAY_BUFFER_ARB, vbo); glBufferDataARB(GL_ARRAY_BUFFER, VBOSize, VBOData, GL_STREAM_DRAW_ARB); /* draw */ glVertexPointer(2, GL_FLOAT, sizeof(Vertex0), (void *) 0); _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
