diff options
author | Brian Paul <[email protected]> | 2005-09-16 01:41:03 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-09-16 01:41:03 +0000 |
commit | 8885b077ed7180e93a002d93864a8ff7b0bb81f3 (patch) | |
tree | 42479194b5195a8e22ea4ba7a4cd573eb3acb471 /src/mesa/swrast/s_context.h | |
parent | e00ac11d4dd05c56584622dc2707bbdcfe4b2707 (diff) |
more GLuint->GLbitfield changes
Diffstat (limited to 'src/mesa/swrast/s_context.h')
-rw-r--r-- | src/mesa/swrast/s_context.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/swrast/s_context.h b/src/mesa/swrast/s_context.h index d08636c2d62..e4c48fab9a2 100644 --- a/src/mesa/swrast/s_context.h +++ b/src/mesa/swrast/s_context.h @@ -308,9 +308,9 @@ typedef struct void (*choose_line)( GLcontext * ); void (*choose_triangle)( GLcontext * ); - GLuint invalidate_point; - GLuint invalidate_line; - GLuint invalidate_triangle; + GLbitfield invalidate_point; + GLbitfield invalidate_line; + GLbitfield invalidate_triangle; /*@}*/ /** Function pointers for dispatch behind public entrypoints. */ @@ -345,7 +345,7 @@ typedef struct */ struct sw_span PointSpan; - /** Internal hooks, kept uptodate by the same mechanism as above. + /** Internal hooks, kept up to date by the same mechanism as above. */ blend_func BlendFunc; texture_sample_func TextureSample[MAX_TEXTURE_IMAGE_UNITS]; |