From 1b258989462e907e45abbdf8743b0a75f22c02b3 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Mon, 18 Jun 2001 17:26:08 +0000 Subject: Consolidated source files. Since the re-org a number of source files only had one or two functions left in them. --- src/mesa/main/drawpix.h | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) (limited to 'src/mesa/main/drawpix.h') diff --git a/src/mesa/main/drawpix.h b/src/mesa/main/drawpix.h index c199877e4a..aa321faec1 100644 --- a/src/mesa/main/drawpix.h +++ b/src/mesa/main/drawpix.h @@ -1,4 +1,4 @@ -/* $Id: drawpix.h,v 1.6 2001/03/12 00:48:37 gareth Exp $ */ +/* $Id: drawpix.h,v 1.7 2001/06/18 17:26:08 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -31,9 +31,26 @@ #include "mtypes.h" + extern void _mesa_DrawPixels( GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *pixels ); +extern void +_mesa_ReadPixels( GLint x, GLint y, GLsizei width, GLsizei height, + GLenum format, GLenum type, GLvoid *pixels ); + + +extern void +_mesa_CopyPixels( GLint srcx, GLint srcy, GLsizei width, GLsizei height, + GLenum type ); + + +extern void +_mesa_Bitmap( GLsizei width, GLsizei height, + GLfloat xorig, GLfloat yorig, GLfloat xmove, GLfloat ymove, + const GLubyte *bitmap ); + + #endif -- cgit v1.2.3