summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/drawpix.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2008-06-09 14:22:15 -0600
committerKeith Whitwell <keith@tungstengraphics.com>2008-09-21 22:13:51 -0700
commit28876dd511ec2c9d5f5500499201df2588e8c7f1 (patch)
tree7a2963e79e9e488af24639e78536714283bc8674 /src/mesa/main/drawpix.h
parent87534210bb9fe5f4e3053d12123491a8c2ccbf6d (diff)
downloadexternal_mesa3d-28876dd511ec2c9d5f5500499201df2588e8c7f1.zip
external_mesa3d-28876dd511ec2c9d5f5500499201df2588e8c7f1.tar.gz
external_mesa3d-28876dd511ec2c9d5f5500499201df2588e8c7f1.tar.bz2
mesa: refactor: move glReadPixels code into new readpix.c file
Diffstat (limited to 'src/mesa/main/drawpix.h')
-rw-r--r--src/mesa/main/drawpix.h12
1 files changed, 3 insertions, 9 deletions
diff --git a/src/mesa/main/drawpix.h b/src/mesa/main/drawpix.h
index 2a2d7de..6177ada 100644
--- a/src/mesa/main/drawpix.h
+++ b/src/mesa/main/drawpix.h
@@ -1,9 +1,8 @@
-
/*
* Mesa 3-D graphics library
- * Version: 3.5
+ * Version: 7.1
*
- * Copyright (C) 1999-2001 Brian Paul All Rights Reserved.
+ * Copyright (C) 1999-2008 Brian Paul All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
@@ -28,7 +27,7 @@
#define DRAWPIXELS_H
-#include "mtypes.h"
+#include "main/glheader.h"
extern void GLAPIENTRY
@@ -37,11 +36,6 @@ _mesa_DrawPixels( GLsizei width, GLsizei height,
extern void GLAPIENTRY
-_mesa_ReadPixels( GLint x, GLint y, GLsizei width, GLsizei height,
- GLenum format, GLenum type, GLvoid *pixels );
-
-
-extern void GLAPIENTRY
_mesa_CopyPixels( GLint srcx, GLint srcy, GLsizei width, GLsizei height,
GLenum type );