diff options
author | Brian Paul <[email protected]> | 2003-08-19 01:07:26 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2003-08-19 01:07:26 +0000 |
commit | d4576154e60d1cc574de15e76fea8fd26c45e230 (patch) | |
tree | e1c980ee246f3a51c21be9bf95d0a41efb5215b8 /src/mesa/glapi/glapitable.h | |
parent | bb9387013343261d6a6c58e6a73d6204c6469de6 (diff) |
glPixelMap[f/ui/us]v()'s size parameter is GLsizei, not GLint.
Diffstat (limited to 'src/mesa/glapi/glapitable.h')
-rw-r--r-- | src/mesa/glapi/glapitable.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/glapi/glapitable.h b/src/mesa/glapi/glapitable.h index 42f8408480a..45fdce57e44 100644 --- a/src/mesa/glapi/glapitable.h +++ b/src/mesa/glapi/glapitable.h @@ -257,9 +257,9 @@ struct _glapi_table void (*PixelTransferi)(GLenum pname, GLint param); /* 248 */ void (*PixelStoref)(GLenum pname, GLfloat param); /* 249 */ void (*PixelStorei)(GLenum pname, GLint param); /* 250 */ - void (*PixelMapfv)(GLenum map, GLint mapsize, const GLfloat * values); /* 251 */ - void (*PixelMapuiv)(GLenum map, GLint mapsize, const GLuint * values); /* 252 */ - void (*PixelMapusv)(GLenum map, GLint mapsize, const GLushort * values); /* 253 */ + void (*PixelMapfv)(GLenum map, GLsizei mapsize, const GLfloat * values); /* 251 */ + void (*PixelMapuiv)(GLenum map, GLsizei mapsize, const GLuint * values); /* 252 */ + void (*PixelMapusv)(GLenum map, GLsizei mapsize, const GLushort * values); /* 253 */ void (*ReadBuffer)(GLenum mode); /* 254 */ void (*CopyPixels)(GLint x, GLint y, GLsizei width, GLsizei height, GLenum type); /* 255 */ void (*ReadPixels)(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid * pixels); /* 256 */ |