vote up 4 vote down star

I have an undefined number of display context and each will display a texture. When I call glGenTextures I get the same name returned across all display contexts. Will this work? Even though they have the same name will they still store and display different textures? If not what should do to get around this?

flag

69% accept rate

2 Answers

vote up 2 vote down

Textures are not (by default) shared across contexts - you have to explicitly enable this, but how you do so is platform-specific.

On win32, it's wglShareLists, and on most other platforms it's specified when you create the context (eg. with the share parameter to aglCreateContext on OS-X).

link|flag
vote up 0 vote down

To my knowledge I have not enabled any texture sharing. however, the same texture is being displayed across all display contexts.

link|flag
How are you creating the graphics-context? What's your platform? – Menkboy Oct 25 '08 at 3:26

Your Answer

Get an OpenID
or

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