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/swrast/s_stencil.h | |
parent | cc502aa9419a6fb127b264dbb131c786281cb8c7 (diff) |
mesa: replace GLstencil with GLubyte
Diffstat (limited to 'src/mesa/swrast/s_stencil.h')
-rw-r--r-- | src/mesa/swrast/s_stencil.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/swrast/s_stencil.h b/src/mesa/swrast/s_stencil.h index 00f5179e046..37f3c8da147 100644 --- a/src/mesa/swrast/s_stencil.h +++ b/src/mesa/swrast/s_stencil.h @@ -38,12 +38,12 @@ _swrast_stencil_and_ztest_span(struct gl_context *ctx, SWspan *span); extern void _swrast_read_stencil_span(struct gl_context *ctx, struct gl_renderbuffer *rb, - GLint n, GLint x, GLint y, GLstencil stencil[]); + GLint n, GLint x, GLint y, GLubyte stencil[]); extern void _swrast_write_stencil_span( struct gl_context *ctx, GLint n, GLint x, GLint y, - const GLstencil stencil[] ); + const GLubyte stencil[] ); extern void |