blob: acac88e92cae11a29307f004a3c89d423cfb68f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#define GL_INVALID_INDEX 0xFFFFFFFFu
typedef unsigned long foo;
int arrayTest(long context, foo * array );
int bufferTest(void * object);
int manyBuffersTest(void * object1, void * object2, void * object3, void * object4, void * object5);
int mixedTest(long context, void * object, foo * array );
int doubleTest(long context, void * object1, foo * array1, void * object2, foo * array2 );
|