Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1110)

Unified Diff: dm/DM.cpp

Issue 1443783002: Make SkAndroidCodec support bmp (Closed) Base URL: https://skia.googlesource.com/skia.git@ship
Patch Set: Response to comments Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/codec/SkAndroidCodec.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dm/DM.cpp
diff --git a/dm/DM.cpp b/dm/DM.cpp
index fb9699c049478d1a052fb269dedcdd73a8af77bc..0cbf9440dbf83e9f80d45dfd9cce984499f2a0cf 100644
--- a/dm/DM.cpp
+++ b/dm/DM.cpp
@@ -363,8 +363,8 @@ static void push_codec_srcs(Path path) {
// The following image types are only supported by BitmapFactory,
// so we only need to test full image decodes.
static const char* fullExts[] = {
- "wbmp",
- "WBMP",
+ "wbmp", "bmp",
+ "WBMP", "BMP",
};
for (const char* ext : fullExts) {
if (path.endsWith(ext)) {
« no previous file with comments | « no previous file | src/codec/SkAndroidCodec.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698