Home | History | Annotate | Download | only in core

Lines Matching defs:Format

29     enum Format {
44 /** Return the format of image this decoder can decode. If this decoder can decode multiple
47 virtual Format getFormat() const;
49 /** Return the format of the SkStreamRewindable or kUnknown_Format if it cannot be determined.
52 static Format GetStreamFormat(SkStreamRewindable*);
54 /** Return a readable string of the Format provided.
56 static const char* GetFormatName(Format);
141 Base class for optional callbacks to choose an image from a format that
303 @param format On success, if format is non-null, it is set to the format
307 Format* format = NULL);
318 @param format On success, if format is non-null, it is set to the format
322 Mode, Format* format = NULL);
348 @param format On success, if format is non-null, it is set to the format
352 Format* format = NULL);
365 Format* format = NULL) {
366 return DecodeFile(file, bitmap, SkBitmapConfigToColorType(pref), mode, format);
369 SkBitmap::Config pref, Mode mode, Format* format = NULL) {
370 return DecodeMemory(buffer, size, bitmap, SkBitmapConfigToColorType(pref), mode, format);
373 Mode mode, Format* format = NULL) {
374 return DecodeStream(stream, bitmap, SkBitmapConfigToColorType(pref), mode, format);
538 typedef SkTRegistry<SkImageDecoder::Format(*)(SkStreamRewindable*)> SkImageDecoder_FormatReg;