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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user