summaryrefslogtreecommitdiff
path: root/src/mesa/main/drawpix.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2001-06-18 17:26:08 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2001-06-18 17:26:08 +0000
commit1b258989462e907e45abbdf8743b0a75f22c02b3 (patch)
treeaaf3847b0189aa370616fbd571a1650d13f1d145 /src/mesa/main/drawpix.h
parent24ae7c4c1f18c3086a779a2ee8f480ee5f4e7612 (diff)
Consolidated source files. Since the re-org a number of source files
only had one or two functions left in them.
Diffstat (limited to 'src/mesa/main/drawpix.h')
-rw-r--r--src/mesa/main/drawpix.h19
1 files changed, 18 insertions, 1 deletions
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