Lines Matching refs:fGIF
37 GifFileType* fGIF; member in GIFMovie
52 fGIF = DGifOpen( stream, Decode ); in GIFMovie()
54 fGIF = DGifOpen( stream, Decode, nullptr ); in GIFMovie()
56 if (nullptr == fGIF) in GIFMovie()
59 if (DGifSlurp(fGIF) != GIF_OK) in GIFMovie()
61 DGifCloseFile(fGIF, nullptr); in GIFMovie()
62 fGIF = nullptr; in GIFMovie()
71 if (fGIF) in ~GIFMovie()
72 DGifCloseFile(fGIF, nullptr); in ~GIFMovie()
91 if (nullptr == fGIF) in onGetInfo()
95 for (int i = 0; i < fGIF->ImageCount; i++) in onGetInfo()
96 dur += savedimage_duration(&fGIF->SavedImages[i]); in onGetInfo()
99 info->fWidth = fGIF->SWidth; in onGetInfo()
100 info->fHeight = fGIF->SHeight; in onGetInfo()
107 if (nullptr == fGIF) in onSetTime()
111 for (int i = 0; i < fGIF->ImageCount; i++) in onSetTime()
113 dur += savedimage_duration(&fGIF->SavedImages[i]); in onSetTime()
120 fCurrIndex = fGIF->ImageCount - 1; in onSetTime()
351 const GifFileType* gif = fGIF; in onGetBitmap()
393 } else if (lastIndex > fGIF->ImageCount - 1) { in onGetBitmap()
395 lastIndex = fGIF->ImageCount - 1; in onGetBitmap()
406 const SavedImage* cur = &fGIF->SavedImages[i]; in onGetBitmap()
421 const SavedImage* prev = &fGIF->SavedImages[i-1]; in onGetBitmap()