HomeSort by relevance Sort by last modified time
    Searched defs:SkBmpCodec (Results 1 - 2 of 2) sorted by null

  /external/skia/src/codec/
SkCodec_libbmp.h 16 // TODO: rename SkCodec_libbmp files to SkBmpCodec
22 class SkBmpCodec : public SkCodec {
103 * Read enough of the stream to initialize the SkBmpCodec. Returns a bool
105 * not NULL, it will be set to a new SkBmpCodec.
161 ownership to SkBmpCodec
174 SkBmpCodec(const SkImageInfo& srcInfo, SkStream* stream,
SkCodec_libbmp.cpp 97 bool SkBmpCodec::IsBmp(SkStream* stream) {
112 SkCodec* SkBmpCodec::NewFromStream(SkStream* stream) {
113 return SkBmpCodec::NewFromStream(stream, false);
122 SkCodec* SkBmpCodec::NewFromIco(SkStream* stream) {
123 return SkBmpCodec::NewFromStream(stream, true);
128 * Read enough of the stream to initialize the SkBmpCodec. Returns a bool
130 * not NULL, it will be set to a new SkBmpCodec.
134 bool SkBmpCodec::ReadHeader(SkStream* stream, bool isIco, SkCodec** codecOut) {
516 *codecOut = SkNEW_ARGS(SkBmpCodec, (imageInfo, stream, bitsPerPixel,
531 SkCodec* SkBmpCodec::NewFromStream(SkStream* stream, bool isIco)
    [all...]

Completed in 130 milliseconds