intel: Remove pointless software fallback for glBitmap on Gen6.
authorKenneth Graunke <kenneth@whitecape.org>
Mon, 5 Mar 2012 21:54:29 +0000 (13:54 -0800)
committerKenneth Graunke <kenneth@whitecape.org>
Sat, 5 May 2012 00:19:43 +0000 (17:19 -0700)
We already have a meta path below that works just fine; no apparent
regressions in oglconform.

NOTE: This is a candidate for the 8.0 branch.

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=46834
Reviewed-by: Chad Versace <chad.versace@linux.intel.com>
src/mesa/drivers/dri/intel/intel_pixel_bitmap.c

index bdfb9abd27d081d10ecf750ba0ee4f84aca2a25d..6821b69f0fc6b71a30e8cdef756c6b212210b931 100644 (file)
@@ -337,9 +337,5 @@ intelBitmap(struct gl_context * ctx,
                           unpack, pixels))
       return;
 
-   /* FIXME */
-   if (intel->gen == 6)
-       return _swrast_Bitmap(ctx, x, y, width, height, unpack, pixels);
-
    _mesa_meta_Bitmap(ctx, x, y, width, height, unpack, pixels);
 }