SFML community forums
Help => Window => Topic started 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.
-
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.
-
Thank you, how i could forget about wglGetCurrentContext().