Chromium Code Reviews| Index: dm/DM.cpp |
| diff --git a/dm/DM.cpp b/dm/DM.cpp |
| index bda9995e35d20cfec908a126b7b2a30c62bacd0c..45968ffd0edc35f7234bf2707e061560936f57db 100644 |
| --- a/dm/DM.cpp |
| +++ b/dm/DM.cpp |
| @@ -249,7 +249,10 @@ int dm_main() { |
| SkTArray<SkString> images; |
| if (!FLAGS_images.isEmpty()) { |
| - const char* suffixes[] = { "bmp", "gif", "jpg", "png", "webp", "ktx", "astc" }; |
| + const char* suffixes[] = { |
| + "bmp", "gif", "jpg", "jpeg", "png", "webp", "ktx", "astc", "wbmp", "ico" |
|
mtklein
2014/12/15 16:31:05
Gonna need a trailing comma after "ico" or we'll b
scroggo
2014/12/15 16:33:52
Done.
|
| + "BMP", "GIF", "JPG", "JPEG", "PNG", "WEBP", "KTX", "ASTC", "WBMP", "ICO" |
| + }; |
| find_files(FLAGS_images[0], suffixes, SK_ARRAY_COUNT(suffixes), &images); |
| } |