diff options
Diffstat (limited to 'xc/extras/Mesa/src/pixel.h')
-rw-r--r-- | xc/extras/Mesa/src/pixel.h | 40 |
1 files changed, 27 insertions, 13 deletions
diff --git a/xc/extras/Mesa/src/pixel.h b/xc/extras/Mesa/src/pixel.h index fe53844dd..3a27d03fa 100644 --- a/xc/extras/Mesa/src/pixel.h +++ b/xc/extras/Mesa/src/pixel.h @@ -1,8 +1,7 @@ -/* $Id: pixel.h,v 1.1.1.1 2000/01/06 13:26:59 faith Exp $ */ /* * Mesa 3-D graphics library - * Version: 3.1 + * Version: 3.3 * * Copyright (C) 1999 Brian Paul All Rights Reserved. * @@ -25,9 +24,6 @@ */ - - - #ifndef PIXEL_H #define PIXEL_H @@ -40,21 +36,39 @@ */ -extern void gl_GetPixelMapfv( GLcontext *ctx, GLenum map, GLfloat *values ); +extern void +_mesa_GetPixelMapfv( GLenum map, GLfloat *values ); + +extern void +_mesa_GetPixelMapuiv( GLenum map, GLuint *values ); + +extern void +_mesa_GetPixelMapusv( GLenum map, GLushort *values ); + +extern void +_mesa_PixelMapfv( GLenum map, GLint mapsize, const GLfloat *values ); + +extern void +_mesa_PixelMapuiv(GLenum map, GLint mapsize, const GLuint *values ); -extern void gl_GetPixelMapuiv( GLcontext *ctx, GLenum map, GLuint *values ); +extern void +_mesa_PixelMapusv(GLenum map, GLint mapsize, const GLushort *values ); -extern void gl_GetPixelMapusv( GLcontext *ctx, GLenum map, GLushort *values ); +extern void +_mesa_PixelStoref( GLenum pname, GLfloat param ); +extern void +_mesa_PixelStorei( GLenum pname, GLint param ); -extern void gl_PixelMapfv( GLcontext *ctx, - GLenum map, GLint mapsize, const GLfloat *values ); +extern void +_mesa_PixelTransferf( GLenum pname, GLfloat param ); -extern void gl_PixelStorei( GLcontext *ctx, GLenum pname, GLint param ); +extern void +_mesa_PixelTransferi( GLenum pname, GLint param ); -extern void gl_PixelTransferf( GLcontext *ctx, GLenum pname, GLfloat param ); +extern void +_mesa_PixelZoom( GLfloat xfactor, GLfloat yfactor ); -extern void gl_PixelZoom( GLcontext *ctx, GLfloat xfactor, GLfloat yfactor ); /* |