summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Graunke <kenneth@whitecape.org>2012-03-05 13:54:29 -0800
committerIan Romanick <ian.d.romanick@intel.com>2012-05-18 16:08:34 -0700
commit6b9363a31647f1e252c7023e52f549a1dd33b4f7 (patch)
tree1226dde44d05104cdd722d63aea297b3dc7c6905
parent4d9ff6af597d4b28e44891a4f4018bb53c66734f (diff)
intel: Remove pointless software fallback for glBitmap on Gen6.
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> (cherry picked from commit 3cd7bee48f7caf7850ea64d40f43875d4c975507)
-rw-r--r--src/mesa/drivers/dri/intel/intel_pixel_bitmap.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mesa/drivers/dri/intel/intel_pixel_bitmap.c b/src/mesa/drivers/dri/intel/intel_pixel_bitmap.c
index bdfb9abd27d..6821b69f0fc 100644
--- a/src/mesa/drivers/dri/intel/intel_pixel_bitmap.c
+++ b/src/mesa/drivers/dri/intel/intel_pixel_bitmap.c
@@ -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);
}