Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(120)

Unified Diff: gm/giantbitmap.cpp

Issue 140593005: add legacy/helper allocN32Pixels, and convert gm to use it (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gm/filterbitmap.cpp ('k') | gm/gmmain.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gm/giantbitmap.cpp
diff --git a/gm/giantbitmap.cpp b/gm/giantbitmap.cpp
index ab75dc7306b8c059e9ff3726ac1e6730eadb082d..c284809b16af530e3bb5557f774d50000d3d094c 100644
--- a/gm/giantbitmap.cpp
+++ b/gm/giantbitmap.cpp
@@ -27,8 +27,7 @@ class GiantBitmapGM : public skiagm::GM {
const SkBitmap& getBitmap() {
if (NULL == fBM) {
fBM = new SkBitmap;
- fBM->setConfig(SkBitmap::kARGB_8888_Config, W, H);
- fBM->allocPixels();
+ fBM->allocN32Pixels(W, H);
fBM->eraseColor(SK_ColorWHITE);
const SkColor colors[] = {
« no previous file with comments | « gm/filterbitmap.cpp ('k') | gm/gmmain.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698