Go to the documentation of this file.00001
00002
00003
00004
00005
00006 #ifndef __COCOS2D_GLU_H
00007 #define __COCOS2D_GLU_H
00008
00009 #import <OpenGLES/ES1/gl.h>
00010
00017 void gluLookAt(float eyeX, float eyeY, float eyeZ, float lookAtX, float lookAtY, float lookAtZ, float upX, float upY, float upZ);
00019 void gluPerspective(GLfloat fovy, GLfloat aspect, GLfloat zNear, GLfloat zFar);
00020
00021 #endif