diff options
author | Brian Paul <[email protected]> | 2001-11-18 23:52:37 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-11-18 23:52:37 +0000 |
commit | 5b7dab2e4c7df1fde0a7fcf28b8b54745b9fcd2e (patch) | |
tree | 05ce265fc4b97cfb18e32b20eefd6c05cfbad42a /src/mesa/main/rastpos.h | |
parent | 17fe22d3bfcce0471ab9ae638cc6b0c91f7d8e65 (diff) |
added test implementation of GL_ARB_window_pos
Diffstat (limited to 'src/mesa/main/rastpos.h')
-rw-r--r-- | src/mesa/main/rastpos.h | 39 |
1 files changed, 38 insertions, 1 deletions
diff --git a/src/mesa/main/rastpos.h b/src/mesa/main/rastpos.h index 234eb76ce1d..62779443c0d 100644 --- a/src/mesa/main/rastpos.h +++ b/src/mesa/main/rastpos.h @@ -1,4 +1,4 @@ -/* $Id: rastpos.h,v 1.4 2001/06/18 17:26:08 brianp Exp $ */ +/* $Id: rastpos.h,v 1.5 2001/11/18 23:52:38 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -182,4 +182,41 @@ extern void _mesa_WindowPos4svMESA(const GLshort *v); +/**********************************************************************/ +/*** GL_ARB_window_pos ***/ +/**********************************************************************/ + +extern void _mesa_WindowPos2dARB(GLdouble x, GLdouble y); + +extern void _mesa_WindowPos2fARB(GLfloat x, GLfloat y); + +extern void _mesa_WindowPos2iARB(GLint x, GLint y); + +extern void _mesa_WindowPos2sARB(GLshort x, GLshort y); + +extern void _mesa_WindowPos2dvARB(const GLdouble *p); + +extern void _mesa_WindowPos2fvARB(const GLfloat *p); + +extern void _mesa_WindowPos2ivARB(const GLint *p); + +extern void _mesa_WindowPos2svARB(const GLshort *p); + +extern void _mesa_WindowPos3dARB(GLdouble x, GLdouble y, GLdouble z); + +extern void _mesa_WindowPos3fARB(GLfloat x, GLfloat y, GLfloat z); + +extern void _mesa_WindowPos3iARB(GLint x, GLint y, GLint z); + +extern void _mesa_WindowPos3sARB(GLshort x, GLshort y, GLshort z); + +extern void _mesa_WindowPos3dvARB(const GLdouble *p); + +extern void _mesa_WindowPos3fvARB(const GLfloat *p); + +extern void _mesa_WindowPos3ivARB(const GLint *p); + +extern void _mesa_WindowPos3svARB(const GLshort *p); + + #endif |