blob: 2312d8ce89adbc0165bcbb059171a51f6f468219 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#ifndef OPENGLMISC
#define OPENGLMISC
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#ifdef _WIN32_
#include "winstuff.h"
#endif
#include <jni.h>
#include<GL/gl.h>
#include <GL/glu.h>
#ifndef LIBAPIENTRY
#define LIBAPIENTRY
#endif
#ifndef LIBAPI
#define LIBAPI
#endif
LIBAPI void * LIBAPIENTRY getGLProcAddressHelper
(const char * func, int * method,
int debug, int verbose );
#endif
|