home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / coders / mesa-1.2.8 / src / winpos.h < prev    next >
C/C++ Source or Header  |  1996-05-27  |  2KB  |  69 lines

  1. /* $Id: winpos.h,v 1.1 1996/05/01 20:46:26 brianp Exp $ */
  2.  
  3. /*
  4.  * Mesa 3-D graphics library
  5.  * Version:  1.2
  6.  * Copyright (C) 1995-1996  Brian Paul  (brianp@ssec.wisc.edu)
  7.  *
  8.  * This library is free software; you can redistribute it and/or
  9.  * modify it under the terms of the GNU Library General Public
  10.  * License as published by the Free Software Foundation; either
  11.  * version 2 of the License, or (at your option) any later version.
  12.  *
  13.  * This library is distributed in the hope that it will be useful,
  14.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  16.  * Library General Public License for more details.
  17.  *
  18.  * You should have received a copy of the GNU Library General Public
  19.  * License along with this library; if not, write to the Free
  20.  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  */
  22.  
  23.  
  24. /*
  25. $Log: winpos.h,v $
  26.  * Revision 1.1  1996/05/01  20:46:26  brianp
  27.  * Initial revision
  28.  *
  29.  */
  30.  
  31.  
  32.  
  33. #ifndef WINPOS_H
  34. #define WINPOS_H
  35.  
  36.  
  37. #include <GL/gl.h>
  38.  
  39.  
  40. #ifndef GL_MESA_window_pos
  41.  
  42. extern void glWindowPos2iMESA( GLint x, GLint y );
  43. extern void glWindowPos2fMESA( GLfloat x, GLfloat y );
  44. extern void glWindowPos2dMESA( GLdouble x, GLdouble y );
  45.  
  46. extern void glWindowPos2ivMESA( const GLint *p );
  47. extern void glWindowPos2fvMESA( const GLfloat *p );
  48. extern void glWindowPos2dvMESA( const GLdouble *p );
  49.  
  50. extern void glWindowPos3iMESA( GLint x, GLint y, GLint z );
  51. extern void glWindowPos3fMESA( GLfloat x, GLfloat y, GLfloat z );
  52. extern void glWindowPos3dMESA( GLdouble x, GLdouble y, GLdouble z );
  53.  
  54. extern void glWindowPos3ivMESA( const GLint *p );
  55. extern void glWindowPos3fvMESA( const GLfloat *p );
  56. extern void glWindowPos3dvMESA( const GLdouble *p );
  57.  
  58. extern void glWindowPos4iMESA( GLint x, GLint y, GLint z, GLint w );
  59. extern void glWindowPos4fMESA( GLfloat x, GLfloat y, GLfloat z, GLfloat w );
  60. extern void glWindowPos4dMESA( GLdouble x, GLdouble y, GLdouble z, GLdouble w);
  61.  
  62. extern void glWindowPos4ivMESA( const GLint *p );
  63. extern void glWindowPos4fvMESA( const GLfloat *p );
  64. extern void glWindowPos4dvMESA( const GLdouble *p );
  65.  
  66. #endif
  67.  
  68. #endif
  69.