00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef PXL_CALLBACKS_H
00019 #define PXL_CALLBACKS_H
00020
00021 #if defined(WIN32)
00022 #include <windows.h>
00023 #endif
00024
00025 #if defined(MBSD_COCOA)
00026 #include <OpenGL/gl.h>
00027 #else
00028 #include <GL/gl.h>
00029 #endif
00030 #include "PXL_API.h"
00031
00032 PXL_API extern GLboolean (*PXL_IsTexture_cb)(GLuint);
00033 PXL_API extern void (*PXL_DeleteTextures_cb)(GLsizei, const GLuint*);
00034
00035 #endif