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

Unified Diff: bench/subset/SubsetBenchPriv.h

Issue 1531833002: Remove Subset*Benches (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years 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 | « bench/nanobench.cpp ('k') | bench/subset/SubsetSingleBench.h » ('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
deleted file mode 100644
index 7e1dfb953068e4fa5a328b6920070542668794ad..0000000000000000000000000000000000000000
--- a/bench/subset/SubsetBenchPriv.h
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * Copyright 2015 The Android Open Source Project
- *
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-#ifndef SubsetBenchPriv_DEFINED
-#define SubsetBenchPriv_DEFINED
-
-#include "SkCodec.h"
-#include "SkData.h"
-#include "SkImageGenerator.h"
-
-/*
- * If we plan to decode to kIndex8, we must create a color table and pass it to the
- * bitmap when we allocate pixels. Otherwise, we simply allocate pixels using the
- * decode info.
- */
-static inline void alloc_pixels(SkBitmap* bitmap, const SkImageInfo& info, SkPMColor* colors,
- int colorCount) {
- if (kIndex_8_SkColorType == info.colorType()) {
- SkAutoTUnref<SkColorTable> colorTable(new SkColorTable(colors, colorCount));
- bitmap->allocPixels(info, nullptr, colorTable);
- } else {
- bitmap->allocPixels(info);
- }
-}
-
-#endif // SubsetBenchPriv_DEFINED
« no previous file with comments | « bench/nanobench.cpp ('k') | bench/subset/SubsetSingleBench.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698