Changeset 3597 for trunk/src/opengl/mesa/rect.h
- Timestamp:
- May 23, 2000, 10:35:01 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/opengl/mesa/rect.h
r2938 r3597 1 /* $Id: rect.h,v 1. 1 2000-02-29 00:48:36 sandervlExp $ */1 /* $Id: rect.h,v 1.2 2000-05-23 20:34:55 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. … … 33 33 34 34 35 #include " types.h"35 #include "glheader.h" 36 36 37 37 38 extern void gl_Rectf( GLcontext *ctx, 39 GLfloat x1, GLfloat y1, GLfloat x2, GLfloat y2 ); 38 extern void 39 _mesa_Rectd(GLdouble x1, GLdouble y1, GLdouble x2, GLdouble y2); 40 41 extern void 42 _mesa_Rectdv(const GLdouble *v1, const GLdouble *v2); 43 44 extern void 45 _mesa_Rectf(GLfloat x1, GLfloat y1, GLfloat x2, GLfloat y2); 46 47 extern void 48 _mesa_Rectfv(const GLfloat *v1, const GLfloat *v2); 49 50 extern void 51 _mesa_Recti(GLint x1, GLint y1, GLint x2, GLint y2); 52 53 extern void 54 _mesa_Rectiv(const GLint *v1, const GLint *v2); 55 56 extern void 57 _mesa_Rects(GLshort x1, GLshort y1, GLshort x2, GLshort y2); 58 59 extern void 60 _mesa_Rectsv(const GLshort *v1, const GLshort *v2); 61 40 62 41 63
Note:
See TracChangeset
for help on using the changeset viewer.