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 60 61 62 63 64
|
/*
# BUILD api_versions [0x101]
*/
%module texture_rectangle
%{
/**
*
* GL.ARB.texture_rectangle 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:38:07 $"
#define __api_version__ API_VERSION
#define __author__ "mcfletch@users.sourceforge.net"
#define __doc__ "http:\057\057oss.sgi.com\057projects\057ogl-sample\057registry\057ARB\057texture_rectangle.txt"
%include util.inc
/* turn the exception handler on */
GL_EXCEPTION_HANDLER()
%{
static char *proc_names[] =
{
NULL
};
#define glInitTextureRectangleARB() InitExtension("GL_ARB_texture_rectangle", proc_names)
%}
int glInitTextureRectangleARB();
DOC(glInitTextureRectangleARB, "glInitTextureRectangleARB() -> bool")
%{
PyObject *__info()
{
if (glInitTextureRectangleARB())
{
PyObject *info = PyList_New(0);
return info;
}
Py_INCREF(Py_None);
return Py_None;
}
%}
PyObject *__info();
#define GL_TEXTURE_RECTANGLE_ARB 0x84F5
#define GL_TEXTURE_BINDING_RECTANGLE_ARB 0x84F6
#define GL_PROXY_TEXTURE_RECTANGLE_ARB 0x84F7
#define GL_MAX_RECTANGLE_TEXTURE_SIZE_ARB 0x84F8
|