Files
commandergenius/project/jni/gl4es/include/gl4eshint.h
2017-01-25 21:12:12 +02:00

29 lines
998 B
C
Executable File

#ifndef _GL4ES_HINT_H_
#define _GL4ES_HINT_H_
// Custom hints to handles some specifics gl4es options
// same as using LIBGL_SHRINK=x
#define GL_SHRINK_HINT_GL4ES 0xA101
// same as using LIBGL_ALPHAHACK=x
#define GL_ALPHAHACK_HINT_GL4ES 0xA102
// same as using LIBGL_RECYCLEFBO=x
#define GL_RECYCLEFBO_HINT_GL4ES 0xA103
// same as using LIBGL_MIPMAP=x
#define GL_MIPMAP_HINT_GL4ES 0xA104
// same as using LIBGL_TEXDUMP=x
#define GL_TEXDUMP_HINT_GL4ES 0xA105
// same as using LIBGL_COPY=x
#define GL_COPY_HINT_GL4ES 0xA106
// same as using LIBGL_NOLUMALPHA=x
#define GL_NOLUMAPHA_HINT_GL4ES 0xA107
// same as using LIBGL_BLENDHACK=x
#define GL_BLENDHACK_HINT_GL4ES 0xA108
// same as using LIBGL_BATCH=x
#define GL_BATCH_HINT_GL4ES 0xA109
// same as using LIBGL_NOERROR=x
#define GL_NOERROR_HINT_GL4ES 0xA10A
// same as using LIBGL_NODOWNSAMPLING=x
#define GL_NODOWNSAMPLING_HINT_GL4ES 0xA10B
#endif