Chromium Code Reviews| Index: bench/SubsetBenchPriv.h |
| diff --git a/bench/SubsetBenchPriv.h b/bench/SubsetBenchPriv.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..09c0d2332ae1adbd1a2d912eac8aee07a70bec59 |
| --- /dev/null |
| +++ b/bench/SubsetBenchPriv.h |
| @@ -0,0 +1,35 @@ |
| +/* |
| + * 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" |
| + |
| +/* |
| + * Convert the color type to a string |
| + */ |
| +static const char* get_color_name(SkColorType colorType) { |
| + switch(colorType) { |
| + case kN32_SkColorType: |
| + return "N32"; |
| + case kRGB_565_SkColorType: |
| + return "565"; |
| + case kGray_8_SkColorType: |
| + return "Gray8"; |
| + case kIndex_8_SkColorType: |
| + return "Gray8"; |
|
scroggo
2015/06/02 13:45:56
Index8
msarett
2015/06/02 17:14:10
Done.
|
| + case kAlpha_8_SkColorType: |
| + return "Alpha8"; |
| + default: |
| + return "Unknown"; |
| + } |
| +} |
| + |
| +#endif // SubsetBenchPriv_DEFINED |