Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

OpenGL newbie question: if I do something like this:

GLfloat vertices[] = { .... };
glVertexPointer(3, GL_FLOAT, 0, vertices);
... set other stuff ...
glDrawArrays(...);

What is the required lifetime of the 'vertices' array? (Or in other words, will OpenGL take a copy of the relevant portion and at what point?) For example, is it OK for the array to reside on the stack as it implicitly would be, or is it required to exist after glDrawArrays() is called?

[For what it's worth, I'm specifically programming for iOS, and at the moment working with code inside the drawFrame method created in an OpenGL project as set up by default in XCode.]

share|improve this question

2 Answers

up vote 2 down vote accepted

Your array must live until glDrawArrays, it can be destroyed afterwards and as implied by this, it can reside on the stack.

share|improve this answer

The contents of the vertex array will be copied each time you call glDrawArrays/Elements and therefore have to still exist at this point in time (until you don't call glDrawArrays/Elements anymore or change the vertex array by a call to gl...Pointer).

To actually store vertex (and other) data on the GPU and let the driver manage its memory (together with the performance improvement of not needing to transfer the data at every draw call), you can use vertex buffer objects. Once you copied your data into such a VBO it resides in GPU memory (or where the driver thinks it fits best) and you actually don't need your CPU copy anymore. But these are simplified statements, consult material on VBOs for more information.

share|improve this answer
Hmm OK will look into buffer objects at some point. As my first OpenGL app, I'm looking to get a small number of primitives on screen for a puzzle app rather than anything too bleeding edge at this stage, but will definitely look into it for when I do something more complex. – Neil Coffey Sep 8 '11 at 23:43
@Neil Was more meant as a little side note, anyway. It is always good to learn step by step. – Christian Rau Sep 9 '11 at 0:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.