File: glx_stats.h

package info (click to toggle)
swt-gtk 3.2.1-5
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 10,484 kB
  • ctags: 19,176
  • sloc: java: 88,626; ansic: 23,896; cpp: 2,589; sh: 138; makefile: 63; xml: 42
file content (47 lines) | stat: -rw-r--r-- 1,462 bytes parent folder | download
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
39
40
41
42
43
44
45
46
47
/*******************************************************************************
 * Copyright (c) 2000, 2006 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 GLX_nativeFunctionCount;
extern int GLX_nativeFunctionCallCount[];
extern char* GLX_nativeFunctionNames[];
#define GLX_NATIVE_ENTER(env, that, func) GLX_nativeFunctionCallCount[func]++;
#define GLX_NATIVE_EXIT(env, that, func) 
#else
#define GLX_NATIVE_ENTER(env, that, func) 
#define GLX_NATIVE_EXIT(env, that, func) 
#endif

typedef enum {
	XVisualInfo_1sizeof_FUNC,
	glGetIntegerv_FUNC,
	glViewport_FUNC,
	glXChooseVisual_FUNC,
	glXCopyContext_FUNC,
	glXCreateContext_FUNC,
	glXCreateGLXPixmap_FUNC,
	glXDestroyContext_FUNC,
	glXDestroyGLXPixmap_FUNC,
	glXGetClientString_FUNC,
	glXGetConfig_FUNC,
	glXGetCurrentContext_FUNC,
	glXGetCurrentDrawable_FUNC,
	glXIsDirect_FUNC,
	glXMakeCurrent_FUNC,
	glXQueryExtension_FUNC,
	glXQueryExtensionsString_FUNC,
	glXQueryServerString_FUNC,
	glXQueryVersion_FUNC,
	glXSwapBuffers_FUNC,
	glXWaitGL_FUNC,
	glXWaitX_FUNC,
	memmove_FUNC,
} GLX_FUNCS;