diff options
Diffstat (limited to 'src/mesa/main/pixel.h')
-rw-r--r-- | src/mesa/main/pixel.h | 41 |
1 files changed, 28 insertions, 13 deletions
diff --git a/src/mesa/main/pixel.h b/src/mesa/main/pixel.h index d14b011dc7e..841c98258f0 100644 --- a/src/mesa/main/pixel.h +++ b/src/mesa/main/pixel.h @@ -1,8 +1,8 @@ -/* $Id: pixel.h,v 1.2 1999/10/30 08:20:57 brianp Exp $ */ +/* $Id: pixel.h,v 1.3 1999/11/11 01:22:27 brianp Exp $ */ /* * Mesa 3-D graphics library - * Version: 3.1 + * Version: 3.3 * * Copyright (C) 1999 Brian Paul All Rights Reserved. * @@ -25,9 +25,6 @@ */ - - - #ifndef PIXEL_H #define PIXEL_H @@ -40,21 +37,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 ); /* |