OpenTK multiple GLControl with a single Context
问题 I m working on a program which should have multiple views of a model. I would like to use multiple GLControls` for that. Is there any possibility to create multiple GLControl which use the same GraphicsContext? I successfully created this on a multithreaded enviroment, but the contexts are not shared then. So I have to load the model for each context, which is bad. My pseudocode for a single threaded enviroment looks something like this: glControl1.MakeCurrent(); // Render here glControl1