From: Michal Krol Date: Wed, 23 Sep 2009 18:24:35 +0000 (+0200) Subject: progs/perf: Actually bind the newly created vbo. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a0549f6634c3573bad5544ad28a208f25c7e4644;p=mesa.git progs/perf: Actually bind the newly created vbo. --- diff --git a/progs/perf/vbo.c b/progs/perf/vbo.c index a9d4102de9f..b326c056ec6 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);