Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /* | |
| 2 * Copyright 2015 The Android Open Source Project | |
| 3 * | |
| 4 * Use of this source code is governed by a BSD-style license that can be | |
| 5 * found in the LICENSE file. | |
| 6 */ | |
| 7 | |
| 8 #ifndef SubsetBenchPriv_DEFINED | |
| 9 #define SubsetBenchPriv_DEFINED | |
| 10 | |
| 11 #include "SkCodec.h" | |
| 12 #include "SkData.h" | |
| 13 #include "SkImageGenerator.h" | |
| 14 | |
| 15 /* | |
| 16 * Convert the color type to a string | |
| 17 */ | |
| 18 static const char* get_color_name(SkColorType colorType) { | |
| 19 switch(colorType) { | |
| 20 case kN32_SkColorType: | |
| 21 return "N32"; | |
| 22 case kRGB_565_SkColorType: | |
| 23 return "565"; | |
| 24 case kGray_8_SkColorType: | |
| 25 return "Gray8"; | |
| 26 case kIndex_8_SkColorType: | |
| 27 return "Gray8"; | |
|
scroggo
2015/06/02 13:45:56
Index8
msarett
2015/06/02 17:14:10
Done.
| |
| 28 case kAlpha_8_SkColorType: | |
| 29 return "Alpha8"; | |
| 30 default: | |
| 31 return "Unknown"; | |
| 32 } | |
| 33 } | |
| 34 | |
| 35 #endif // SubsetBenchPriv_DEFINED | |
| OLD | NEW |