File: texture_env_add.i

package info (click to toggle)
pyopengl 2.0.1.09.dfsg.1-0.2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 16,068 kB
  • ctags: 9,218
  • sloc: pascal: 66,059; xml: 28,092; python: 21,715; ansic: 20,706; tcl: 668; makefile: 247
file content (59 lines) | stat: -rw-r--r-- 1,033 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
48
49
50
51
52
53
54
55
56
57
58
59
/*
# BUILD api_versions [0x101]
*/

%module texture_env_add

%{
/**
 *
 * GL.ARB.texture_env_add Module for PyOpenGL
 * 
 * Date: Oct 2004
 *
 * Authors: mcfletch@users.sourceforge.net
 * 
***/
%}

#define __version__ "$Revision: 1.1.2.1 $"
#define __date__ "$Date: 2004/10/19 05:59:06 $"
#define __api_version__ API_VERSION
#define __author__ "mcfletch@users.sourceforge.net"
#define __doc__ "http:\057\057oss.sgi.com\057projects\057ogl-sample\057registry\057ARB\057texture_env_add.txt"

%include util.inc

/* turn the exception handler on */
GL_EXCEPTION_HANDLER()

%{
static char *proc_names[] =
{
	NULL
};

#define glInitTextureEnvAddARB() InitExtension("GL_ARB_texture_env_add", proc_names)
%}

int glInitTextureEnvAddARB();
DOC(glInitTextureEnvAddARB, "glInitTextureEnvAddARB() -> bool")


%{
PyObject *__info()
{
	if (glInitTextureEnvAddARB())
	{
		PyObject *info = PyList_New(0);
		return info;
	}
	
	Py_INCREF(Py_None);
	return Py_None;
}
%}

PyObject *__info();