diff options
author | Brian Paul <[email protected]> | 2012-01-16 10:54:31 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2012-01-24 14:12:09 -0700 |
commit | 7726be1c1b8ae321d01e781b5db4e2224e67d13d (patch) | |
tree | 5003ed54f7259c0c3e6281bf5f87068804ee5a62 /src/mesa/swrast/s_blend.c | |
parent | ca6d86d26b1726b13baa21b73fe9d426f28370e2 (diff) |
swrast: remove gl_renderbuffer::DataType assertions
This field will go away, so remove some uses of it.
Diffstat (limited to 'src/mesa/swrast/s_blend.c')
-rw-r--r-- | src/mesa/swrast/s_blend.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/swrast/s_blend.c b/src/mesa/swrast/s_blend.c index be5010b1383..cd6e6f03602 100644 --- a/src/mesa/swrast/s_blend.c +++ b/src/mesa/swrast/s_blend.c @@ -1000,7 +1000,6 @@ _swrast_blend_span(struct gl_context *ctx, struct gl_renderbuffer *rb, SWspan *s ASSERT(span->end <= MAX_WIDTH); ASSERT(span->arrayMask & SPAN_RGBA); - ASSERT(rb->DataType == span->array->ChanType); ASSERT(!ctx->Color.ColorLogicOpEnabled); rbPixels = _swrast_get_dest_rgba(ctx, rb, span); |