How would I retrieve this info? I checked IGraphicsContext and most of its members without much luck. Is it somewhere else or missing?
Check http://www.opentk.com/doc/graphics/graphicscontext under "accessing internal information".
In short, you need to cast to IGraphicsContextInternal:
IGraphicsContextInternal
IntPtr context_handle = (my_context as IGraphicsContextInternal).Context.Handle;
Didn't know about it. Thanks!
Comments
Re: Query GraphicsContext handle
Check http://www.opentk.com/doc/graphics/graphicscontext under "accessing internal information".
In short, you need to cast to
IGraphicsContextInternal:Re: Query GraphicsContext handle
Didn't know about it.
Thanks!