swrast: Remove support for Bitmap into a color-index buffer

Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
This commit is contained in:
Ian Romanick
2010-02-24 15:15:01 -08:00
parent ef0e02f93d
commit d05badba29
+3 -12
View File
@@ -125,10 +125,7 @@ _swrast_Bitmap( GLcontext *ctx, GLint px, GLint py,
if (count + width >= MAX_WIDTH || row + 1 == height) {
/* flush the span */
span.end = count;
if (ctx->Visual.rgbMode)
_swrast_write_rgba_span(ctx, &span);
else
_swrast_write_index_span(ctx, &span);
_swrast_write_rgba_span(ctx, &span);
span.end = 0;
count = 0;
}
@@ -192,10 +189,7 @@ _swrast_Bitmap( GLcontext *ctx, GLint px, GLint py,
}
}
if (ctx->Visual.rgbMode)
_swrast_write_rgba_span(ctx, &span);
else
_swrast_write_index_span(ctx, &span);
_swrast_write_rgba_span(ctx, &span);
/* get ready for next row */
if (mask != 1)
@@ -215,10 +209,7 @@ _swrast_Bitmap( GLcontext *ctx, GLint px, GLint py,
}
}
if (ctx->Visual.rgbMode)
_swrast_write_rgba_span(ctx, &span);
else
_swrast_write_index_span(ctx, &span);
_swrast_write_rgba_span(ctx, &span);
/* get ready for next row */
if (mask != 128)