intel: Drop the INTEL_NO_BLIT debug environment variable.
authorEric Anholt <eric@anholt.net>
Tue, 6 Mar 2012 18:37:48 +0000 (10:37 -0800)
committerEric Anholt <eric@anholt.net>
Tue, 20 Mar 2012 22:27:46 +0000 (15:27 -0700)
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@whitecape.org>
src/mesa/drivers/dri/intel/intel_pixel.c

index eeafe22344365f1f7e11bab2fb41c33c7fc6632a..bc705105d4d965d1aa01826483693d506ac94324 100644 (file)
@@ -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;
 }