00001
00002
00003
00004
00005
00006
00007
00008
00009
00015 #ifndef ADSOBASE_H
00016 #define ADSOBASE_H
00017
00018 #include <stdio.h>
00019
00020 #ifdef ADSO_WINDOWS
00021
00022 #include <windows.h>
00023 #include <wingdi.h>
00024 #include <GL/gl.h>
00025 #include <GL/glaux.h>
00026 #include <GL/glext.h>
00027
00028 extern PFNGLACTIVETEXTUREARBPROC glActiveTextureARB;
00029 extern PFNGLMULTITEXCOORD2FARBPROC glMultiTexCoord2fARB;
00030 extern PFNGLCLIENTACTIVETEXTUREARBPROC glClientActiveTextureARB;
00031
00033
00034 #endif
00035
00036 int adsoinit();
00037
00038 struct AdsoStats {
00039 int verticeCount;
00040 };
00041
00042 extern AdsoStats stats;
00043
00044 #endif
00045