Home | History | Annotate | Download | only in images

Lines Matching full:stream

25 SkImageDecoder* image_decoder_from_stream(SkStream* stream) {
29 codec = curr->factory()(stream);
31 // the stream will be at its beginning.
32 bool rewindSuceeded = stream->rewind();
35 // if we are given a stream that does not support rewinding.
37 SkDEBUGF(("Unable to rewind the image stream."));
54 SkImageDecoder::Format SkImageDecoder::GetStreamFormat(SkStream* stream) {
57 Format format = curr->factory()(stream);
58 if (!stream->rewind()) {
60 "Unable to rewind the image stream\n");