diff options
author | halcanary <halcanary@google.com> | 2015-03-27 12:16:53 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-03-27 12:16:53 -0700 |
commit | a096d7a6d03662073f4cd46f7db5fe2cf5495c36 (patch) | |
tree | dcaf6ab6002e37a9525a82101ac640f2ead1bf46 /dm | |
parent | 135b7ecaa81018aa497da6ef8a8493263df456ef (diff) |
SkCodec: add wbmp class
Review URL: https://codereview.chromium.org/1006583005
Diffstat (limited to 'dm')
-rw-r--r-- | dm/DM.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -155,7 +155,8 @@ static bool codec_supported(const char* ext) { // list (and eventually we can remove this check once they are all supported). 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; + strcmp(ext, "ico") == 0 || strcmp(ext, "ICO") == 0 || + strcmp(ext, "wbmp") == 0 || strcmp(ext, "WBMP") == 0; } static void gather_srcs() { |