Changeset 3582 for trunk/src/opengl/mesa/drawpix.h
- Timestamp:
- May 21, 2000, 10:57:14 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/opengl/mesa/drawpix.h
r2938 r3582 1 /* $Id: drawpix.h,v 1. 1 2000-02-29 00:48:29 sandervlExp $ */1 /* $Id: drawpix.h,v 1.2 2000-05-21 20:33:34 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 extern GLboolean 39 gl_direct_DrawPixels(GLcontext *ctx,40 const struct gl_pixelstore_attrib *unpack,41 GLsizei width, GLsizeiheight,42 GLenum format, GLenum type, const GLvoid *pixels);39 _mesa_clip_pixelrect(const GLcontext *ctx, 40 GLint *destX, GLint *destY, 41 GLsizei *width, GLsizei *height, 42 GLint *skipPixels, GLint *skipRows); 43 43 44 44 45 #if 000 46 extern void gl_DrawPixels( GLcontext *ctx, GLsizei width, GLsizei height, 47 GLenum format, GLenum type, const GLvoid *pixels ); 48 #endif 49 50 51 extern void gl_DrawPixels( GLcontext *ctx, struct gl_image *image ); 52 45 extern void 46 _mesa_DrawPixels( GLsizei width, GLsizei height, 47 GLenum format, GLenum type, const GLvoid *pixels ); 53 48 54 49 #endif
Note:
See TracChangeset
for help on using the changeset viewer.