Is there any library which provides functions for debugging programs using opengl?
I mean functions which provide visual help, like drawing the xy plane, or a sphere at the origin, or show a scene in wireframe mode.
Is there any library which provides functions for debugging programs using opengl?
I mean functions which provide visual help, like drawing the xy plane, or a sphere at the origin, or show a scene in wireframe mode.
To draw in wireframe mode you only have to use:
glPolygonMode( GL_FRONT_AND_BACK, GL_LINE );