Home | History | Annotate | Download | only in codec

Lines Matching refs:SkPngCodec

14 #include "SkPngCodec.h"
95 bool SkPngCodec::decodePalette(bool premultiply, int* ctableCount) {
164 bool SkPngCodec::IsPng(const char* buf, size_t bytesRead) {
332 SkPngCodec::SkPngCodec(const SkImageInfo& info, SkStream* stream, SkPngChunkReader* chunkReader,
343 SkPngCodec::~SkPngCodec() {
347 void SkPngCodec::destroyReadStruct() {
361 SkCodec::Result SkPngCodec::initializeSwizzler(const SkImageInfo& requestedInfo,
417 // Create the swizzler. SkPngCodec retains ownership of the color table.
426 bool SkPngCodec::onRewind() {
446 SkCodec::Result SkPngCodec::onGetPixels(const SkImageInfo& requestedInfo, void* dst,
532 uint32_t SkPngCodec::onGetFillValue(SkColorType colorType) const {
540 // Subclass of SkPngCodec which supports scanline decoding
541 class SkPngScanlineDecoder : public SkPngCodec {
602 typedef SkPngCodec INHERITED;
606 class SkPngInterlacedScanlineDecoder : public SkPngCodec {
726 typedef SkPngCodec INHERITED;
729 SkCodec* SkPngCodec::NewFromStream(SkStream* stream, SkPngChunkReader* chunkReader) {