summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/pixel.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2003-08-19 01:08:24 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2003-08-19 01:08:24 +0000
commit9d73b81068182b72e332b762786d3e89f8dcac71 (patch)
tree61d329475e964618cd74c3ded2a28b378155ba3c /src/mesa/main/pixel.h
parentd4576154e60d1cc574de15e76fea8fd26c45e230 (diff)
downloadexternal_mesa3d-9d73b81068182b72e332b762786d3e89f8dcac71.zip
external_mesa3d-9d73b81068182b72e332b762786d3e89f8dcac71.tar.gz
external_mesa3d-9d73b81068182b72e332b762786d3e89f8dcac71.tar.bz2
Fix glPixelMap: s/GLint/GLsizei/
Diffstat (limited to 'src/mesa/main/pixel.h')
-rw-r--r--src/mesa/main/pixel.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mesa/main/pixel.h b/src/mesa/main/pixel.h
index e559453..e41d6b1 100644
--- a/src/mesa/main/pixel.h
+++ b/src/mesa/main/pixel.h
@@ -5,9 +5,9 @@
/*
* Mesa 3-D graphics library
- * Version: 3.5
+ * Version: 5.1
*
- * Copyright (C) 1999-2001 Brian Paul All Rights Reserved.
+ * Copyright (C) 1999-2003 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"),
@@ -48,13 +48,13 @@ extern void
_mesa_GetPixelMapusv( GLenum map, GLushort *values );
extern void
-_mesa_PixelMapfv( GLenum map, GLint mapsize, const GLfloat *values );
+_mesa_PixelMapfv( GLenum map, GLsizei mapsize, const GLfloat *values );
extern void
-_mesa_PixelMapuiv(GLenum map, GLint mapsize, const GLuint *values );
+_mesa_PixelMapuiv(GLenum map, GLsizei mapsize, const GLuint *values );
extern void
-_mesa_PixelMapusv(GLenum map, GLint mapsize, const GLushort *values );
+_mesa_PixelMapusv(GLenum map, GLsizei mapsize, const GLushort *values );
extern void
_mesa_PixelStoref( GLenum pname, GLfloat param );