diff options
| author | Mike Reed <reed@google.com> | 2017-04-03 14:41:44 -0400 |
|---|---|---|
| committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2017-04-03 19:29:38 +0000 |
| commit | 6b3155c4be0476bc53541b0431c368a44e69f0a7 (patch) | |
| tree | 2de5a87716b38a587c475731df815e5c8178e133 /samplecode/SampleFilter.cpp | |
| parent | 2db3232c88cbaec5585f263111f334ca7272fe10 (diff) | |
Revert[4] "clean up (partially) colortable api""""
Fixes:
- create temp api for android to pass nullptr
- don't release and access sk_sp<SkData> at the same time in parameters
This reverts commit b14131c1851eea6acbd34cc42a8f860daed36b21.
Bug: skia:
Change-Id: Ic0e4f62520ba9f35455499ed30d306ad19d998a8
Reviewed-on: https://skia-review.googlesource.com/11129
Commit-Queue: Mike Reed <reed@google.com>
Reviewed-by: Matt Sarett <msarett@google.com>
Diffstat (limited to 'samplecode/SampleFilter.cpp')
| -rw-r--r-- | samplecode/SampleFilter.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/samplecode/SampleFilter.cpp b/samplecode/SampleFilter.cpp index 66de8f317f..d12f804d19 100644 --- a/samplecode/SampleFilter.cpp +++ b/samplecode/SampleFilter.cpp @@ -26,11 +26,9 @@ static void make_bm(SkBitmap* bm) { SkPreMultiplyColor(SK_ColorRED), SkPreMultiplyColor(SK_ColorGREEN), SkPreMultiplyColor(SK_ColorBLUE), SkPreMultiplyColor(SK_ColorWHITE) }; - SkColorTable* ctable = new SkColorTable(colors, 4); bm->allocPixels(SkImageInfo::Make(2, 2, kIndex_8_SkColorType, kOpaque_SkAlphaType), - nullptr, ctable); - ctable->unref(); + SkColorTable::Make(colors, 4)); *bm->getAddr8(0, 0) = 0; *bm->getAddr8(1, 0) = 1; |
