mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
319 B
11 lines
319 B
#ifndef __GLSIZE_H__
|
|
#define __GLSIZE_H__
|
|
|
|
#define RANGE(n, a, b) \
|
|
(((unsigned)(n) >= (unsigned)(a)) && ((unsigned)(n) <= (unsigned)(b)))
|
|
|
|
#define __GLTYPESIZE(n) __glTypeSize[(n)-GL_BYTE]
|
|
extern GLint __glTypeSize[];
|
|
// #define RANGE_GLTYPESIZE(n) RANGE(n,GL_BYTE,GL_DOUBLE)
|
|
|
|
#endif /* !__GLSIZE_H__ */
|