Changeset 3597 for trunk/src/opengl/mesa/winpos.h
- Timestamp:
- May 23, 2000, 10:35:01 PM (25 years ago)
- 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 sandervlExp $ */1 /* $Id: winpos.h,v 1.2 2000-05-23 20:35:00 jeroen Exp $ */ 2 2 3 3 /* 4 4 * Mesa 3-D graphics library 5 * Version: 3. 15 * Version: 3.3 6 6 * 7 7 * Copyright (C) 1999 Brian Paul All Rights Reserved. … … 37 37 38 38 39 #ifndef GL_MESA_window_pos 39 extern void 40 _mesa_WindowPos2dMESA(GLdouble x, GLdouble y); 40 41 41 extern void glWindowPos2iMESA( GLint x, GLint y ); 42 extern void glWindowPos2fMESA( GLfloat x, GLfloat y ); 43 extern void glWindowPos2dMESA( GLdouble x, GLdouble y ); 42 extern void 43 _mesa_WindowPos2fMESA(GLfloat x, GLfloat y); 44 44 45 extern void glWindowPos2ivMESA( const GLint *p ); 46 extern void glWindowPos2fvMESA( const GLfloat *p ); 47 extern void glWindowPos2dvMESA( const GLdouble *p ); 45 extern void 46 _mesa_WindowPos2iMESA(GLint x, GLint y); 48 47 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 ); 48 extern void 49 _mesa_WindowPos2sMESA(GLshort x, GLshort y); 52 50 53 extern void glWindowPos3ivMESA( const GLint *p ); 54 extern void glWindowPos3fvMESA( const GLfloat *p ); 55 extern void glWindowPos3dvMESA( const GLdouble *p ); 51 extern void 52 _mesa_WindowPos3dMESA(GLdouble x, GLdouble y, GLdouble z); 56 53 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); 54 extern void 55 _mesa_WindowPos3fMESA(GLfloat x, GLfloat y, GLfloat z); 60 56 61 extern void glWindowPos4ivMESA( const GLint *p ); 62 extern void glWindowPos4fvMESA( const GLfloat *p ); 63 extern void glWindowPos4dvMESA( const GLdouble *p ); 57 extern void 58 _mesa_WindowPos3iMESA(GLint x, GLint y, GLint z); 59 60 extern void 61 _mesa_WindowPos3sMESA(GLshort x, GLshort y, GLshort z); 62 63 extern void 64 _mesa_WindowPos4dMESA(GLdouble x, GLdouble y, GLdouble z, GLdouble w); 65 66 extern void 67 _mesa_WindowPos4fMESA(GLfloat x, GLfloat y, GLfloat z, GLfloat w); 68 69 extern void 70 _mesa_WindowPos4iMESA(GLint x, GLint y, GLint z, GLint w); 71 72 extern void 73 _mesa_WindowPos4sMESA(GLshort x, GLshort y, GLshort z, GLshort w); 74 75 extern void 76 _mesa_WindowPos2dvMESA(const GLdouble *v); 77 78 extern void 79 _mesa_WindowPos2fvMESA(const GLfloat *v); 80 81 extern void 82 _mesa_WindowPos2ivMESA(const GLint *v); 83 84 extern void 85 _mesa_WindowPos2svMESA(const GLshort *v); 86 87 extern void 88 _mesa_WindowPos3dvMESA(const GLdouble *v); 89 90 extern void 91 _mesa_WindowPos3fvMESA(const GLfloat *v); 92 93 extern void 94 _mesa_WindowPos3ivMESA(const GLint *v); 95 96 extern void 97 _mesa_WindowPos3svMESA(const GLshort *v); 98 99 extern void 100 _mesa_WindowPos4dvMESA(const GLdouble *v); 101 102 extern void 103 _mesa_WindowPos4fvMESA(const GLfloat *v); 104 105 extern void 106 _mesa_WindowPos4ivMESA(const GLint *v); 107 108 extern void 109 _mesa_WindowPos4svMESA(const GLshort *v); 110 64 111 65 112 #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.