Mesa (master): intel: Drop the INTEL_NO_BLIT debug environment variable.

Eric Anholt anholt at kemper.freedesktop.org
Tue Mar 20 22:28:24 UTC 2012


Module: Mesa
Branch: master
Commit: 7e6221f2e32602cbd64f04cc704f9bb0abda7776
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=7e6221f2e32602cbd64f04cc704f9bb0abda7776

Author: Eric Anholt <eric at anholt.net>
Date:   Tue Mar  6 10:37:48 2012 -0800

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 <kenneth at whitecape.org>

---

 src/mesa/drivers/dri/intel/intel_pixel.c |    8 +++-----
 1 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/src/mesa/drivers/dri/intel/intel_pixel.c b/src/mesa/drivers/dri/intel/intel_pixel.c
index eeafe22..bc70510 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;
 }
 




More information about the mesa-commit mailing list