r600g: pad the DMA CS to a multiple of 8 dwords
[mesa.git] / src / mesa / main / drawpix.h
index 6177adad6da5b5befc667b0611b5009ba1c68400..087b3a8c94ef0acd9821eb3d7e703f459a6fba82 100644 (file)
  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  */
 
+#ifndef DRAWPIX_H
+#define DRAWPIX_H
 
-#ifndef DRAWPIXELS_H
-#define DRAWPIXELS_H
 
+#include "compiler.h"
+#include "mfeatures.h"
 
-#include "main/glheader.h"
+struct _glapi_table;
 
 
-extern void GLAPIENTRY
+void GLAPIENTRY
 _mesa_DrawPixels( GLsizei width, GLsizei height,
                   GLenum format, GLenum type, const GLvoid *pixels );
-
-
-extern void GLAPIENTRY
+void GLAPIENTRY
 _mesa_CopyPixels( GLint srcx, GLint srcy, GLsizei width, GLsizei height,
                   GLenum type );
-
-
-extern void GLAPIENTRY
+void GLAPIENTRY
 _mesa_Bitmap( GLsizei width, GLsizei height,
               GLfloat xorig, GLfloat yorig, GLfloat xmove, GLfloat ymove,
               const GLubyte *bitmap );
 
 
-#endif
+#endif /* DRAWPIX_H */