diff options
author | Brian Paul <[email protected]> | 2011-11-11 07:30:18 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-11-15 07:49:25 -0700 |
commit | 6d68855df133bdd4891e8aa428787b520739e0fe (patch) | |
tree | 4d242ff9bbbc094774792440ae25cff47346568f /src/mesa/state_tracker | |
parent | cc502aa9419a6fb127b264dbb131c786281cb8c7 (diff) |
mesa: replace GLstencil with GLubyte
Diffstat (limited to 'src/mesa/state_tracker')
-rw-r--r-- | src/mesa/state_tracker/st_cb_readpixels.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/state_tracker/st_cb_readpixels.c b/src/mesa/state_tracker/st_cb_readpixels.c index bd73f3bf037..0c68e02fc87 100644 --- a/src/mesa/state_tracker/st_cb_readpixels.c +++ b/src/mesa/state_tracker/st_cb_readpixels.c @@ -96,7 +96,7 @@ st_read_stencil_pixels(struct gl_context *ctx, GLint x, GLint y, /* process image row by row */ for (j = 0; j < height; j++) { GLvoid *dest; - GLstencil sValues[MAX_WIDTH]; + GLubyte sValues[MAX_WIDTH]; GLfloat zValues[MAX_WIDTH]; GLint srcY; |