Skip to main content
summaryrefslogtreecommitdiffstats
blob: fc359aff5cceb45ff5d5012cd89fb47f08bd5029 (plain) (blame)
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
29
30
31
32
33
34
35
36
37
38
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
*     IBM Corporation - initial API and implementation
*******************************************************************************/

#ifdef NATIVE_STATS
extern int AGL_nativeFunctionCount;
extern int AGL_nativeFunctionCallCount[];
extern char* AGL_nativeFunctionNames[];
#define AGL_NATIVE_ENTER(env, that, func) AGL_nativeFunctionCallCount[func]++;
#define AGL_NATIVE_EXIT(env, that, func) 
#else
#define AGL_NATIVE_ENTER(env, that, func) 
#define AGL_NATIVE_EXIT(env, that, func) 
#endif

typedef enum {
	aglChoosePixelFormat_FUNC,
	aglCreateContext_FUNC,
	aglDescribePixelFormat_FUNC,
	aglDestroyContext_FUNC,
	aglDestroyPixelFormat_FUNC,
	aglEnable_FUNC,
	aglGetCurrentContext_FUNC,
	aglGetDrawable_FUNC,
	aglSetCurrentContext_FUNC,
	aglSetDrawable_FUNC,
	aglSetInteger__III_FUNC,
	aglSetInteger__II_3I_FUNC,
	aglSwapBuffers_FUNC,
	aglUpdateContext_FUNC,
} AGL_FUNCS;

Back to the top