diff options
Diffstat (limited to 'dm/DM.cpp')
-rw-r--r-- | dm/DM.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -146,7 +146,9 @@ static void push_src(const char* tag, Src* s) { static bool codec_supported(const char* ext) { // FIXME: Once other versions of SkCodec are available, we can add them to this // list (and eventually we can remove this check once they are all supported). - return strcmp(ext, "png") == 0 || strcmp(ext, "PNG") == 0; + return strcmp(ext, "png") == 0 || strcmp(ext, "PNG") == 0 || + strcmp(ext, "bmp") == 0 || strcmp(ext, "BMP") == 0 || + strcmp(ext, "ico") == 0 || strcmp(ext, "ICO") == 0; } static void gather_srcs() { |