1 #ifndef MSP_GRAPHICS_SIMPLEWINDOW_H_
2 #define MSP_GRAPHICS_SIMPLEWINDOW_H_
12 Helper class for SimpleWindow.
14 class SimpleWindowBase
19 SimpleWindowBase() { }
24 A simplified Window that encapsulates a Display.
26 class SimpleWindow: public SimpleWindowBase, public Window
29 SimpleWindow(unsigned, unsigned, bool =false);
36 A SimpleWindow bundled with a GLContext.
38 class SimpleGLWindow: public SimpleWindow
44 SimpleGLWindow(unsigned, unsigned, bool =false);
45 GLContext &get_gl_context() { return gl_ctx; }
49 } // namespace Graphics