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

Unified Diff: bench/subset/SubsetBenchPriv.h

Issue 1213983003: Fix CodecSubset benches seg faults for kIndex8 (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 6 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 | « no previous file | bench/subset/SubsetSingleBench.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bench/subset/SubsetBenchPriv.h
diff --git a/bench/subset/SubsetBenchPriv.h b/bench/subset/SubsetBenchPriv.h
index e0eb2ff82676dde1a6401fd948ecbd1a793a35ab..6bd2b7c058c7ad9b408e249a98ffaf4792845581 100644
--- a/bench/subset/SubsetBenchPriv.h
+++ b/bench/subset/SubsetBenchPriv.h
@@ -32,4 +32,14 @@ static const char* get_color_name(SkColorType colorType) {
}
}
+static inline void alloc_pixels(SkBitmap* bitmap, const SkImageInfo& info, SkColorType colorType,
+ SkPMColor* colors, int colorCount) {
+ if (kIndex_8_SkColorType == colorType) {
scroggo 2015/06/30 19:12:00 Does colorType need to be a separate parameter? It
msarett 2015/06/30 19:36:00 Agreed!
+ SkAutoTUnref<SkColorTable> colorTable(SkNEW_ARGS(SkColorTable, (colors, colorCount)));
+ bitmap->allocPixels(info, NULL, colorTable);
+ } else {
+ bitmap->allocPixels(info);
+ }
+}
+
#endif // SubsetBenchPriv_DEFINED
« no previous file with comments | « no previous file | bench/subset/SubsetSingleBench.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698