diff options
author | msarett <msarett@google.com> | 2015-08-06 15:34:42 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-08-06 15:34:42 -0700 |
commit | 4ab9d5f1bc6d05c49dc765c3de5ade816f4c968e (patch) | |
tree | ecab1b0e6d12a892197f81a89b3bd1df3e0e7a58 /gyp | |
parent | 74992b579422a5e31fa07705d1f9206e0d919706 (diff) |
Split SkBmpCodec into three separate classes
Will regress behavior on gold on test32bfv4.bmp, where we
will no longer fix transparent decodes.
TODO: Start fixing transparent decodes again, or decide
that we don't want to fix them and remove isTransparent
from SkSwizzler. I think this may become more clear when I
start implementing the scanline decoder.
BUG=skia:
Review URL: https://codereview.chromium.org/1258863008
Diffstat (limited to 'gyp')
-rw-r--r-- | gyp/codec.gyp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gyp/codec.gyp b/gyp/codec.gyp index c7c1892bd5..cc06945ce8 100644 --- a/gyp/codec.gyp +++ b/gyp/codec.gyp @@ -33,6 +33,9 @@ ], 'sources': [ '../src/codec/SkBmpCodec.cpp', + '../src/codec/SkBmpMaskCodec.cpp', + '../src/codec/SkBmpRLECodec.cpp', + '../src/codec/SkBmpStandardCodec.cpp', '../src/codec/SkCodec.cpp', '../src/codec/SkCodec_libgif.cpp', '../src/codec/SkCodec_libico.cpp', |