Pseudocode:

void draw()
{
    Vertex* vertices = scene.GetVertexArray();
    glEnableClientState(...);
    glVertexPointer(..., vertices);
    glDrawArrays(...);
    glDisableClientState(...);
    delete vertices;
}

I'm not using VBO since I want to support older OpenGL implementations.

After calling glDrawArrays, I want to:

  • deallocate my vertex array ("delete vertices;")
  • perhaps modify some of the vertices

However, GL is free to perform the glDrawArrays asynchronously, and it's not safe to deallocate or modify my array until it has finished.

I could do a glFinish to ensure that, but it'd slow down the app.

So at what moment am I free to deallocate/modify my vertex array?

link|improve this question
feedback

1 Answer

OpenGL guarantees you, that once any function that actually access some memory returns, you can change or deallocate it's contents. Those functions are:

  • glDrawArrays (after it returns, the memory gl{Normal,Color,TexCoord,Attrib,Vertex}Pointer was set to can be disposed)
  • glDrawElements (after it returns, the memory gl{Normal,Color,TexCoord,Attrib,Vertex}Pointer was set to and the element array can be disposed)
  • glTexImage (memory data points to)
  • glTexSubImage (memory data points to)
  • glBufferData (memory data points to)
  • glBufferSubData (memory data points to)

It is important to know that gl{Normal,Color,TexCoord,Attrib,Vertex}Pointer just set a pointer and don't create a copy. However a copy of sort of the data is made by glDrawElements and glDrawArrays calls (depending on the driver a physical copy is not made immediately but the memory management adjusted for a copy-on-write scheme — in case the buffer doesn't get modified or deallocated by the user programm this saves crucial bandwidth and CPU cycles).

link|improve this answer
Thanks. How is the copy-on-write implemented? How can the driver know I've changed the data? – coder123 May 1 '11 at 12:20
It is not, the driver does not know, and there is no copy-on-write, that's wishful thinking. If you don't use buffer objects, a copy will be made at the time you call a function like glDrawElements. The GL has no control over where your client data is located or that it is page-aligned, it would therefore have a very hard time implementing a copy-on-write scheme. That would be like asking for the disk driver to use DMA when reading into some arbitrary buffer of yours. – Damon May 1 '11 at 12:38
@Damon: I exactly wrote what you mentioned (please read my last paragraph again): By "glDrawElements and glDrawArrays calls". Next time please read carefully what I wrote. – datenwolf May 1 '11 at 12:54
@datenwolf: Hmm, you wrote that "usually not a copy is made by glDrawElements". – coder123 May 1 '11 at 12:56
@coder123: (Parts of the) Drivers usually live in kernel space. In kernel space they have the opportunity to fiddle with the memory management, what happens is like following: The pages with the data passed to the driver are marked as read only, and a second set of pages is marked as to be used by writes to this memory. Once the programm tries to modify those pages, a pagefault happens wich causes the kernel to jump into the pagefault handler. In that handler the page table is adjusted so that the user space process now uses the new pages, while the driver continues the use the original pages. – datenwolf May 1 '11 at 12:59
show 11 more comments
feedback

Your Answer

 
or
required, but never shown

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