Revert of Add SkCodec, including PNG implementation. (patchset #24 id:460001 of https...
authorscroggo <scroggo@google.com>
Mon, 2 Mar 2015 20:31:12 +0000 (12:31 -0800)
committerCommit bot <commit-bot@chromium.org>
Mon, 2 Mar 2015 20:31:12 +0000 (12:31 -0800)
commitee1a726aed980016a9371ffa4768e0844c360eb2
treed8095a07602a0b66d4a16744e5f9171d9e8ed9c6
parentca358852b4fed656d11107b2aaf28318a4518b49
Revert of Add SkCodec, including PNG implementation. (patchset #24 id:460001 of https://codereview.chromium.org/930283002/)

Reason for revert:
Breaking windows bots all over the place :(

Original issue's description:
> Add SkCodec, including PNG implementation.
>
> DM:
> Add a flag to use SkCodec instead of SkImageDecoder.
>
> SkCodec:
> Base class for codecs, allowing creation from an SkStream or an SkData.
> An SkCodec, on creation, knows properties of the data like its width and height. Further calls can be used to generate the image.
> TODO: Add scanline iterator
>
> SkPngCodec:
> New decoder for png. Wraps libpng. The code has been repurposed from SkImageDecoder_libpng.
> TODO: Handle other destination colortypes
> TODO: Substitute the transpose color
> TODO: Allow silencing warnings
> TODO: Use RGB instead of filler?
> TODO: sRGB
>
> SkSwizzler:
> Simplified version of SkScaledSampler. Unlike the sampler, this object does no sampling.
> TODO: Implement other swizzles.
>
> BUG=skia:3257
>
> Committed: https://skia.googlesource.com/skia/+/ca358852b4fed656d11107b2aaf28318a4518b49

TBR=reed@google.com,djsollen@google.com,msarett@google.com,mtklein@google.com
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=skia:3257

Review URL: https://codereview.chromium.org/972743003
13 files changed:
DEPS
dm/DMSrcSink.cpp
gyp/codec.gyp [deleted file]
gyp/common_variables.gypi
gyp/copy_file.py [deleted file]
gyp/libpng.gyp
gyp/skia_lib.gyp
include/codec/SkCodec.h [deleted file]
src/codec/SkCodec.cpp [deleted file]
src/codec/SkCodec_libpng.cpp [deleted file]
src/codec/SkCodec_libpng.h [deleted file]
src/codec/SkSwizzler.cpp [deleted file]
src/codec/SkSwizzler.h [deleted file]