Use kLow_SkFilterQuality in DrawBitmapAABench

BUG=skia:4001
R=reed@google.com

Review URL: https://codereview.chromium.org/1222713007
diff --git a/bench/DrawBitmapAABench.cpp b/bench/DrawBitmapAABench.cpp
index 1738ce7..e4e0296 100644
--- a/bench/DrawBitmapAABench.cpp
+++ b/bench/DrawBitmapAABench.cpp
@@ -22,6 +22,8 @@
         , fName("draw_bitmap_") {
 
         fPaint.setAntiAlias(doAA);
+        // Most clients use filtering, so let's focus on this for now.
+        fPaint.setFilterQuality(kLow_SkFilterQuality);
         fName.appendf("%s_%s", doAA ? "aa" : "noaa", name);
     }