Texture units

Hi All,

Is it possible to share texture units among multiple device contexts?

Thanks.

You can share your texture resources with wglShareLists. The active texture unit is OpenGL state, and is common to all contexts in your app.

Meaning each OpenGL context has its own active texture unit (in case that was confusing). :slight_smile: