Ignore:
Timestamp:
May 23, 2000, 10:35:01 PM (25 years ago)
Author:
jeroen
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/opengl/mesa/winpos.h

    r2938 r3597  
    1 /* $Id: winpos.h,v 1.1 2000-02-29 00:48:44 sandervl Exp $ */
     1/* $Id: winpos.h,v 1.2 2000-05-23 20:35:00 jeroen Exp $ */
    22
    33/*
    44 * Mesa 3-D graphics library
    5  * Version:  3.1
     5 * Version:  3.3
    66 *
    77 * Copyright (C) 1999  Brian Paul   All Rights Reserved.
     
    3737
    3838
    39 #ifndef GL_MESA_window_pos
     39extern void
     40_mesa_WindowPos2dMESA(GLdouble x, GLdouble y);
    4041
    41 extern void glWindowPos2iMESA( GLint x, GLint y );
    42 extern void glWindowPos2fMESA( GLfloat x, GLfloat y );
    43 extern void glWindowPos2dMESA( GLdouble x, GLdouble y );
     42extern void
     43_mesa_WindowPos2fMESA(GLfloat x, GLfloat y);
    4444
    45 extern void glWindowPos2ivMESA( const GLint *p );
    46 extern void glWindowPos2fvMESA( const GLfloat *p );
    47 extern void glWindowPos2dvMESA( const GLdouble *p );
     45extern void
     46_mesa_WindowPos2iMESA(GLint x, GLint y);
    4847
    49 extern void glWindowPos3iMESA( GLint x, GLint y, GLint z );
    50 extern void glWindowPos3fMESA( GLfloat x, GLfloat y, GLfloat z );
    51 extern void glWindowPos3dMESA( GLdouble x, GLdouble y, GLdouble z );
     48extern void
     49_mesa_WindowPos2sMESA(GLshort x, GLshort y);
    5250
    53 extern void glWindowPos3ivMESA( const GLint *p );
    54 extern void glWindowPos3fvMESA( const GLfloat *p );
    55 extern void glWindowPos3dvMESA( const GLdouble *p );
     51extern void
     52_mesa_WindowPos3dMESA(GLdouble x, GLdouble y, GLdouble z);
    5653
    57 extern void glWindowPos4iMESA( GLint x, GLint y, GLint z, GLint w );
    58 extern void glWindowPos4fMESA( GLfloat x, GLfloat y, GLfloat z, GLfloat w );
    59 extern void glWindowPos4dMESA( GLdouble x, GLdouble y, GLdouble z, GLdouble w);
     54extern void
     55_mesa_WindowPos3fMESA(GLfloat x, GLfloat y, GLfloat z);
    6056
    61 extern void glWindowPos4ivMESA( const GLint *p );
    62 extern void glWindowPos4fvMESA( const GLfloat *p );
    63 extern void glWindowPos4dvMESA( const GLdouble *p );
     57extern void
     58_mesa_WindowPos3iMESA(GLint x, GLint y, GLint z);
     59
     60extern void
     61_mesa_WindowPos3sMESA(GLshort x, GLshort y, GLshort z);
     62
     63extern void
     64_mesa_WindowPos4dMESA(GLdouble x, GLdouble y, GLdouble z, GLdouble w);
     65
     66extern void
     67_mesa_WindowPos4fMESA(GLfloat x, GLfloat y, GLfloat z, GLfloat w);
     68
     69extern void
     70_mesa_WindowPos4iMESA(GLint x, GLint y, GLint z, GLint w);
     71
     72extern void
     73_mesa_WindowPos4sMESA(GLshort x, GLshort y, GLshort z, GLshort w);
     74
     75extern void
     76_mesa_WindowPos2dvMESA(const GLdouble *v);
     77
     78extern void
     79_mesa_WindowPos2fvMESA(const GLfloat *v);
     80
     81extern void
     82_mesa_WindowPos2ivMESA(const GLint *v);
     83
     84extern void
     85_mesa_WindowPos2svMESA(const GLshort *v);
     86
     87extern void
     88_mesa_WindowPos3dvMESA(const GLdouble *v);
     89
     90extern void
     91_mesa_WindowPos3fvMESA(const GLfloat *v);
     92
     93extern void
     94_mesa_WindowPos3ivMESA(const GLint *v);
     95
     96extern void
     97_mesa_WindowPos3svMESA(const GLshort *v);
     98
     99extern void
     100_mesa_WindowPos4dvMESA(const GLdouble *v);
     101
     102extern void
     103_mesa_WindowPos4fvMESA(const GLfloat *v);
     104
     105extern void
     106_mesa_WindowPos4ivMESA(const GLint *v);
     107
     108extern void
     109_mesa_WindowPos4svMESA(const GLshort *v);
     110
    64111
    65112#endif
    66 
    67 
    68 extern void gl_WindowPos4fMESA( GLcontext *ctx,
    69                                 GLfloat x, GLfloat y, GLfloat z, GLfloat w );
    70 
    71 #endif
Note: See TracChangeset for help on using the changeset viewer.