diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2006-09-22 17:44:39 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2006-09-22 17:44:39 +0000 |
commit | 43715c711d2c1d1e7624cd7c9c8a44b8866510fd (patch) | |
tree | 45deb856011174d5edf21fb524fbb4219637c14b /src/mesa/swrast/s_masking.h | |
parent | 9f819dc0145aabe18717dcd1de6e83e62bb8b19a (diff) |
Get rid of _swrast_mask_rgba_array() and _swrast_mask_index_array().
Diffstat (limited to 'src/mesa/swrast/s_masking.h')
-rw-r--r-- | src/mesa/swrast/s_masking.h | 19 |
1 files changed, 2 insertions, 17 deletions
diff --git a/src/mesa/swrast/s_masking.h b/src/mesa/swrast/s_masking.h index e2265448f8..daffc20174 100644 --- a/src/mesa/swrast/s_masking.h +++ b/src/mesa/swrast/s_masking.h @@ -1,8 +1,8 @@ /* * Mesa 3-D graphics library - * Version: 6.3 + * Version: 6.5.2 * - * Copyright (C) 1999-2005 Brian Paul All Rights Reserved. + * Copyright (C) 1999-2006 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"), @@ -31,28 +31,13 @@ #include "swrast.h" -/* - * Implement glColorMask for a span of RGBA pixels. - */ extern void _swrast_mask_rgba_span(GLcontext *ctx, struct gl_renderbuffer *rb, const struct sw_span *span, GLchan rgba[][4]); extern void -_swrast_mask_rgba_array(GLcontext *ctx, struct gl_renderbuffer *rb, - GLuint n, GLint x, GLint y, GLchan rgba[][4]); - - -/* - * Implement glIndexMask for a span of CI pixels. - */ -extern void _swrast_mask_ci_span(GLcontext *ctx, struct gl_renderbuffer *rb, const struct sw_span *span, GLuint index[]); -extern void -_swrast_mask_ci_array(GLcontext *ctx, struct gl_renderbuffer *rb, - GLuint n, GLint x, GLint y, GLuint index[]); - #endif |