i965: fallback bitmap operation on sandybridge

Need to bring back correct fb write with header to set pixel
write mask. Fallback for now.

Note: Conflicts in intel_pixel_bitmap.c due to the removal of
intel_texture_bitmap from master.

Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
This commit is contained in:
Zhenyu Wang 2010-09-28 15:50:59 +08:00 committed by Ian Romanick
parent aaf7f78dfa
commit 71bdc82c19

View file

@ -508,10 +508,16 @@ intelBitmap(GLcontext * ctx,
const struct gl_pixelstore_attrib *unpack,
const GLubyte * pixels)
{
struct intel_context *intel = intel_context(ctx);
if (do_blit_bitmap(ctx, x, y, width, height,
unpack, pixels))
return;
/* FIXME */
if (intel->gen == 6)
return _swrast_Bitmap(ctx, x, y, width, height, unpack, pixels);
if (intel_texture_bitmap(ctx, x, y, width, height,
unpack, pixels))
return;