Windowing tasks

Started by
1 comment, last by rAm_y_ 10 years ago

Opengl programming guide 8th edition says "OpenGL doesn’t include functions for performing windowing tasks". What are windowing tasks?

Advertisement

Minimize, switch window, resize, maximize, dock, etc...

This is why a lot of people use something like SDL/SFML for the window context, and then do all rendering inside that window with OpenGL (as an example).

Hazard Pay :: FPS/RTS in SharpDX (gathering dust, retained for... historical purposes)
DeviantArt :: Because right-brain needs love too (also pretty neglected these days)

Creating the Window that GL runs in is operating system specific, the WIN32 API for Windows for example. GL is platform independent hence it doesn't implement the drawing of windows. Windows are are what you see in desktop apps, like dialog boxes or message boxes, they have a handle assigned to them and GL uses this to do the actuall rendering inside this windows handle.

This topic is closed to new replies.

Advertisement