1#ifndef _FRAMEWORK_H_ 2#define _FRAMEWORK_H_ 3 4#include <stdlib.h> 5#include <stdio.h> 6#include <string.h> 7#include <assert.h> 8#include <math.h> 9#include <GL/glew.h> 10#include "glut_wrap.h" 11 12extern void InitFramework (int *argc, char *argv[]); 13 14extern void InitScene (void); 15extern void RenderScene (void); 16 17extern GLboolean CheckObjectStatus (GLhandleARB); 18 19#endif 20 21