X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=src%2Fmesa%2Fmain%2Fdrawpix.h;h=31baa192ec5d30ae16d8126539ceea24246a8c4a;hb=04dca296e0a5e5ffbb8acb699e013a23ebd7b645;hp=aa321faec1789c4b1caf66ec8837a698994132a2;hpb=1b258989462e907e45abbdf8743b0a75f22c02b3;p=mesa.git diff --git a/src/mesa/main/drawpix.h b/src/mesa/main/drawpix.h index aa321faec17..31baa192ec5 100644 --- a/src/mesa/main/drawpix.h +++ b/src/mesa/main/drawpix.h @@ -1,10 +1,8 @@ -/* $Id: drawpix.h,v 1.7 2001/06/18 17:26:08 brianp Exp $ */ - /* * 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"), @@ -24,33 +22,29 @@ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ - -#ifndef DRAWPIXELS_H -#define DRAWPIXELS_H +#ifndef DRAWPIX_H +#define DRAWPIX_H -#include "mtypes.h" +#include "compiler.h" +#include "mfeatures.h" +struct _glapi_table; -extern void -_mesa_DrawPixels( GLsizei width, GLsizei height, - GLenum format, GLenum type, const GLvoid *pixels ); +#if FEATURE_drawpix extern void -_mesa_ReadPixels( GLint x, GLint y, GLsizei width, GLsizei height, - GLenum format, GLenum type, GLvoid *pixels ); +_mesa_init_drawpix_dispatch(struct _glapi_table *disp); +#else /* FEATURE_drawpix */ -extern void -_mesa_CopyPixels( GLint srcx, GLint srcy, GLsizei width, GLsizei height, - GLenum type ); - +static INLINE void +_mesa_init_drawpix_dispatch(struct _glapi_table *disp) +{ +} -extern void -_mesa_Bitmap( GLsizei width, GLsizei height, - GLfloat xorig, GLfloat yorig, GLfloat xmove, GLfloat ymove, - const GLubyte *bitmap ); +#endif /* FEATURE_drawpix */ -#endif +#endif /* DRAWPIX_H */