SFML community forums

Help => Window => Topic started by: RedFalcon on July 31, 2009, 02:41:19 pm

Title: Get HGLRC for wglShareLists()
Post by: RedFalcon on July 31, 2009, 02:41:19 pm
Hi,

i created an application which supports two windows in Dual View mode and also fullscreen. Now i want to share textures between the two without loading each texture i need twice. Is there a way to get HGLRC from RenderWindow or should i roll my own thing? I'm using C++/CLR and C# together.
Title: Get HGLRC for wglShareLists()
Post by: Laurent on July 31, 2009, 02:53:32 pm
SFML already shares every context it creates. If you use an external context, and then really needs to retrieve the SFML's context, then you can set the RenderWindow as active and call wglGetCurrentContext.
Title: Get HGLRC for wglShareLists()
Post by: RedFalcon on July 31, 2009, 02:55:58 pm
Thank you, how i could forget about wglGetCurrentContext().