From: Eric Anholt Date: Wed, 9 Dec 2009 00:15:07 +0000 (-0800) Subject: i965: Enable the accelerated ReadPixels path on gen4 along with pre-gen4. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=dd9eb8774ad7918187afebf8cd3be6f4b80f0f3b;p=mesa.git i965: Enable the accelerated ReadPixels path on gen4 along with pre-gen4. Passes piglit pbo-read-argb8888, and doesn't otherwise regress quick.tests. --- diff --git a/src/mesa/drivers/dri/intel/intel_pixel_read.c b/src/mesa/drivers/dri/intel/intel_pixel_read.c index 47075001801..20424e2e589 100644 --- a/src/mesa/drivers/dri/intel/intel_pixel_read.c +++ b/src/mesa/drivers/dri/intel/intel_pixel_read.c @@ -285,11 +285,11 @@ intelReadPixels(GLcontext * ctx, intelFlush(ctx); -#ifdef I915 if (do_blit_readpixels (ctx, x, y, width, height, format, type, pack, pixels)) return; +#ifdef I915 if (do_texture_readpixels (ctx, x, y, width, height, format, type, pack, pixels)) return;