commit | 3055b700189afdd02486ed8f2279cea1d8897243 | [log] [tgz] |
---|---|---|
author | robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | Tue Aug 20 17:49:04 2013 +0000 |
committer | robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | Tue Aug 20 17:49:04 2013 +0000 |
tree | a66e6ce6e9717464dd67eb206f76440da9bab059 | |
parent | 4eaa6647e70c9404d1c920f674d706ca2d2a76b9 [diff] [blame] |
Split SkDevice out of SkBitmapDevice https://codereview.chromium.org/22978012/ git-svn-id: http://skia.googlecode.com/svn/trunk@10830 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/gm/lighting.cpp b/gm/lighting.cpp index f16e781..a89a7f1 100644 --- a/gm/lighting.cpp +++ b/gm/lighting.cpp
@@ -27,7 +27,7 @@ void make_bitmap() { fBitmap.setConfig(SkBitmap::kARGB_8888_Config, 100, 100); fBitmap.allocPixels(); - SkDevice device(fBitmap); + SkBitmapDevice device(fBitmap); SkCanvas canvas(&device); canvas.clear(0x00000000); SkPaint paint;