VBO context binding

If I upload data in one context to a VBO buffer, will it be available in another context ?

Can I get the same VBO id in another context by the GenBuffersARB ?

Originally posted by ToolTech:
If I upload data in one context to a VBO buffer, will it be available in another context ?

Yes, since buffers are server-side state and are shared among contexts.

Can I get the same VBO id in another context by the GenBuffersARB ?

I’d say no since, again, buffers are server-side state. Therefore, the VBO ids have to be unique for all contexts.

Great ! Thanx…