/* opengl.cpp
 */

#ifdef GL

extern "C" {
#include <GL/gl.h>
#include <GL/glu.h>
#include <glaux.h>
}

#include "opengl.H"

void reshape( GLsizei width, GLsizei height )
{
    glViewport (0, 0, width, height);    
}

#endif

