From: Eric Anholt Date: Tue, 6 Mar 2012 18:37:48 +0000 (-0800) Subject: intel: Drop the INTEL_NO_BLIT debug environment variable. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7e6221f2e32602cbd64f04cc704f9bb0abda7776;p=mesa.git intel: Drop the INTEL_NO_BLIT debug environment variable. This was added in the i915/i965 merge from the i915 driver, but I don't recall it ever being used since then. Reviewed-by: Kenneth Graunke --- diff --git a/src/mesa/drivers/dri/intel/intel_pixel.c b/src/mesa/drivers/dri/intel/intel_pixel.c index eeafe223443..bc705105d4d 100644 --- a/src/mesa/drivers/dri/intel/intel_pixel.c +++ b/src/mesa/drivers/dri/intel/intel_pixel.c @@ -159,11 +159,9 @@ void intelInitPixelFuncs(struct dd_function_table *functions) { functions->Accum = _mesa_accum; - if (!getenv("INTEL_NO_BLIT")) { - functions->Bitmap = intelBitmap; - functions->CopyPixels = intelCopyPixels; - functions->DrawPixels = intelDrawPixels; - } + functions->Bitmap = intelBitmap; + functions->CopyPixels = intelCopyPixels; + functions->DrawPixels = intelDrawPixels; functions->ReadPixels = intelReadPixels; }