1 2 3 4 5 6 7 8 9 10 11 12 13
#include "display.h" #include "../../view/geometry.h" #include <GL/glut.h> void display (void) { glClear (GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); geometry (GL_RENDER); glutSwapBuffers (); return; }
Copyright © 2009 Don Pellegrino All Rights Reserved.