Lines Matching refs:gif
73 void SkGifCodec::CloseGif(GifFileType* gif) { in CloseGif() argument
75 DGifCloseFile(gif); in CloseGif()
77 DGifCloseFile(gif, NULL); in CloseGif()
156 SkAutoTCallVProc<GifFileType, CloseGif> gif(open_gif(stream)); in ReadHeader() local
158 if (NULL == gif) { in ReadHeader()
165 const int32_t width = gif->SWidth; in ReadHeader()
166 const int32_t height = gif->SHeight; in ReadHeader()
185 *codecOut = SkNEW_ARGS(SkGifCodec, (imageInfo, streamDeleter.detach(), gif.detach())); in ReadHeader()
189 *gifOut = gif.detach(); in ReadHeader()
208 GifFileType* gif) in SkGifCodec() argument
210 , fGif(gif) in SkGifCodec()