Changeset 3597 for trunk/src/opengl/mesa/pixel.h
- Timestamp:
- May 23, 2000, 10:35:01 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/opengl/mesa/pixel.h
r2938 r3597 1 /* $Id: pixel.h,v 1. 1 2000-02-29 00:48:35 sandervlExp $ */1 /* $Id: pixel.h,v 1.2 2000-05-23 20:34:54 jeroen Exp $ */ 2 2 3 3 /* 4 4 * Mesa 3-D graphics library 5 * Version: 3. 15 * Version: 3.3 6 6 * 7 7 * Copyright (C) 1999 Brian Paul All Rights Reserved. … … 41 41 42 42 43 extern void gl_GetPixelMapfv( GLcontext *ctx, GLenum map, GLfloat *values ); 43 extern void 44 _mesa_GetPixelMapfv( GLenum map, GLfloat *values ); 44 45 45 extern void gl_GetPixelMapuiv( GLcontext *ctx, GLenum map, GLuint *values ); 46 extern void 47 _mesa_GetPixelMapuiv( GLenum map, GLuint *values ); 46 48 47 extern void gl_GetPixelMapusv( GLcontext *ctx, GLenum map, GLushort *values ); 49 extern void 50 _mesa_GetPixelMapusv( GLenum map, GLushort *values ); 48 51 52 extern void 53 _mesa_PixelMapfv( GLenum map, GLint mapsize, const GLfloat *values ); 49 54 50 extern void gl_PixelMapfv( GLcontext *ctx,51 GLenum map, GLint mapsize, const GLfloat *values );55 extern void 56 _mesa_PixelMapuiv(GLenum map, GLint mapsize, const GLuint *values ); 52 57 53 extern void gl_PixelStorei( GLcontext *ctx, GLenum pname, GLint param ); 58 extern void 59 _mesa_PixelMapusv(GLenum map, GLint mapsize, const GLushort *values ); 54 60 55 extern void gl_PixelTransferf( GLcontext *ctx, GLenum pname, GLfloat param ); 61 extern void 62 _mesa_PixelStoref( GLenum pname, GLfloat param ); 56 63 57 extern void gl_PixelZoom( GLcontext *ctx, GLfloat xfactor, GLfloat yfactor ); 64 extern void 65 _mesa_PixelStorei( GLenum pname, GLint param ); 66 67 extern void 68 _mesa_PixelTransferf( GLenum pname, GLfloat param ); 69 70 extern void 71 _mesa_PixelTransferi( GLenum pname, GLint param ); 72 73 extern void 74 _mesa_PixelZoom( GLfloat xfactor, GLfloat yfactor ); 75 58 76 59 77
Note:
See TracChangeset
for help on using the changeset viewer.