Home | History | Annotate | Download | only in png

Lines Matching defs:PNGImageDecoder

41 #include "PNGImageDecoder.h"
81 static_cast<PNGImageDecoder*>(png_get_progressive_ptr(png))->headerAvailable();
87 static_cast<PNGImageDecoder*>(png_get_progressive_ptr(png))->rowAvailable(rowBuffer, rowIndex, interlacePass);
93 static_cast<PNGImageDecoder*>(png_get_progressive_ptr(png))->pngComplete();
99 PNGImageReader(PNGImageDecoder* decoder)
131 PNGImageDecoder* decoder = static_cast<PNGImageDecoder*>(png_get_progressive_ptr(m_png));
172 PNGImageDecoder::PNGImageDecoder(ImageSource::AlphaOption alphaOption,
179 PNGImageDecoder::~PNGImageDecoder()
183 bool PNGImageDecoder::isSizeAvailable()
191 bool PNGImageDecoder::setSize(unsigned width, unsigned height)
200 ImageFrame* PNGImageDecoder::frameBufferAtIndex(size_t index)
216 bool PNGImageDecoder::setFailed()
240 void PNGImageDecoder::headerAvailable()
332 void PNGImageDecoder::rowAvailable(unsigned char* rowBuffer, unsigned rowIndex, int interlacePass)
415 void PNGImageDecoder::pngComplete()
421 void PNGImageDecoder::decode(bool onlySize)