Add DevIL 1.7.8.

This commit is contained in:
rude
2013-09-26 00:20:08 +02:00
parent 6e493fb605
commit c065120c58
487 changed files with 219483 additions and 0 deletions
@@ -0,0 +1,25 @@
#ifndef TEST3D_H
#define TEST3D_H
#define MAX_X 640
#define MAX_Y 480
void DisplayFunc(void);
void CleanUp(void);
void ExitClean(void);
void ResizeFunc(int NewWidth, int NewHeight);
void IdleFunc(void);
void KeyboardFunc(unsigned char cChar, int nMouseX, int nMouseY);
void KeySpecialFunc(int Key, int x, int y);
void SetPerspective(float Fov);
ILboolean Setup(void);
ILboolean GenSides(void);
ILboolean bCleaned = IL_FALSE;
GLuint TexID1 = 0, TexID2 = 0, TexID3 = 0, TexID4 = 0;
ILuint ImgId;
float Angle = 0.0, TransFactor = -470.0;
#endif//TEST3D_H