| commit | deee496cd30070e52556dcb538c2e5eb39b66b81 | [log] [tgz] |
|---|---|---|
| author | mike@reedtribe.org <mike@reedtribe.org@2bbb7eff-a529-9590-31e7-b0007b416f81> | Thu Feb 13 14:41:43 2014 +0000 |
| committer | mike@reedtribe.org <mike@reedtribe.org@2bbb7eff-a529-9590-31e7-b0007b416f81> | Thu Feb 13 14:41:43 2014 +0000 |
| tree | 80f0326a191c966bc34057e4011bdb3233bc2a50 | |
| parent | b720ffd20829953c9595980422969520f5e33c76 [diff] [blame] |
replace setConfig+allocPixels with single call BUG=skia: Review URL: https://codereview.chromium.org/162643002 git-svn-id: http://skia.googlecode.com/svn/trunk@13426 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/tests/MipMapTest.cpp b/tests/MipMapTest.cpp index aca6973..33f4672 100644 --- a/tests/MipMapTest.cpp +++ b/tests/MipMapTest.cpp
@@ -15,8 +15,7 @@ // should fix that to support 1 X N, where N > 1 to return non-null. int w = 2 + rand.nextU() % 1000; int h = 2 + rand.nextU() % 1000; - bm->setConfig(SkBitmap::kARGB_8888_Config, w, h); - bm->allocPixels(); + bm->allocN32Pixels(w, h); bm->eraseColor(SK_ColorWHITE); }