[Mesa-dev] [PATCH 3/7] intel: Drop the INTEL_NO_BLIT debug environment variable.

Eric Anholt eric at anholt.net
Tue Mar 6 14:57:14 PST 2012


This was added in the i915/i965 merge from the i915 driver, but I
don't recall it ever being used since then.
---
 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;
 }
 
-- 
1.7.9.1



More information about the mesa-dev mailing list