diff options
author | Fred Drake <fdrake@acm.org> | 1999-04-27 18:05:06 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-04-27 18:05:06 (GMT) |
commit | 505c49199a59a265ba95daa703470ea606a96486 (patch) | |
tree | 3fa6f5fab812f5148d687447b2956f6c745119c8 /Doc | |
parent | 7b2812211af5c99e7c582ea2e6a50b03cf0a0e3e (diff) | |
download | cpython-505c49199a59a265ba95daa703470ea606a96486.zip cpython-505c49199a59a265ba95daa703470ea606a96486.tar.gz cpython-505c49199a59a265ba95daa703470ea606a96486.tar.bz2 |
Added "See also" reference to PyOpenGL.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libgl.tex | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/Doc/lib/libgl.tex b/Doc/lib/libgl.tex index 0c0f578..615504a 100644 --- a/Doc/lib/libgl.tex +++ b/Doc/lib/libgl.tex @@ -48,13 +48,13 @@ For example, the C call \begin{verbatim} lmdef(deftype, index, np, props) \end{verbatim} -% + is translated to Python as \begin{verbatim} lmdef(deftype, index, props) \end{verbatim} -% + \item Output arguments are omitted from the argument list; they are transmitted as function return values instead. @@ -67,13 +67,13 @@ Examples: the C call \begin{verbatim} getmcolor(i, &red, &green, &blue) \end{verbatim} -% + is translated to Python as \begin{verbatim} red, green, blue = getmcolor(i) \end{verbatim} -% + \end{itemize} The following functions are non-standard or have special argument @@ -188,6 +188,16 @@ main() \end{verbatim} +\begin{seealso} + \seetext{An interface to OpenGL\index{OpenGL} is also available; see + information about David Ascher's\index{Ascher, David} + \strong{PyOpenGL}\index{PyOpenGL} online at + \url{http://starship.python.net/crew/da/PyOpenGL/}. This may + be a better option if support for SGI hardware from before about + 1996 is not required.} +\end{seealso} + + \section{\module{DEVICE} --- Constants used with the \module{gl} module} |