HomeSort by relevance Sort by last modified time
    Searched defs:gif (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/skia/src/images/
SkImageDecoder_libgif.cpp 39 /* Implement the GIF interlace algorithm in an iterator.
111 static const ColorMapObject* find_colormap(const GifFileType* gif) {
112 const ColorMapObject* cmap = gif->Image.ColorMap;
114 cmap = gif->SColorMap;
148 static bool error_return(GifFileType* gif, const SkBitmap& bm,
159 GifFileType* gif = DGifOpen(sk_stream, DecodeCallBackProc); local
161 GifFileType* gif = DGifOpen(sk_stream, DecodeCallBackProc, NULL);
163 if (NULL == gif) {
164 return error_return(gif, *bm, "DGifOpen");
167 SkAutoTCallIProc<GifFileType, DGifCloseFile> acp(gif);
    [all...]
SkMovie_gif.cpp 341 const GifFileType* gif = fGIF; local
342 if (NULL == gif)
345 if (gif->ImageCount < 1) {
349 const int width = gif->SWidth;
350 const int height = gif->SHeight;
391 if (gif->SColorMap != NULL) {
392 const GifColorType& col = gif->SColorMap->Colors[fGIF->SBackGroundColor];
404 if (!trans && gif->SColorMap != NULL) {
422 drawFrame(bm, cur, gif->SColorMap);
  /external/skia/src/images/
SkImageDecoder_libgif.cpp 39 /* Implement the GIF interlace algorithm in an iterator.
111 static const ColorMapObject* find_colormap(const GifFileType* gif) {
112 const ColorMapObject* cmap = gif->Image.ColorMap;
114 cmap = gif->SColorMap;
148 static bool error_return(GifFileType* gif, const SkBitmap& bm,
159 GifFileType* gif = DGifOpen(sk_stream, DecodeCallBackProc); local
161 GifFileType* gif = DGifOpen(sk_stream, DecodeCallBackProc, NULL);
163 if (NULL == gif) {
164 return error_return(gif, *bm, "DGifOpen");
167 SkAutoTCallIProc<GifFileType, DGifCloseFile> acp(gif);
    [all...]
SkMovie_gif.cpp 341 const GifFileType* gif = fGIF; local
342 if (NULL == gif)
345 if (gif->ImageCount < 1) {
349 const int width = gif->SWidth;
350 const int height = gif->SHeight;
391 if (gif->SColorMap != NULL) {
392 const GifColorType& col = gif->SColorMap->Colors[fGIF->SBackGroundColor];
404 if (!trans && gif->SColorMap != NULL) {
422 drawFrame(bm, cur, gif->SColorMap);

Completed in 112 milliseconds