#include <emscripten/console.h>#include "flutter/skwasm/export.h"#include "flutter/skwasm/skwasm_support.h"#include "third_party/skia/include/core/SkData.h"Go to the source code of this file.
Functions | |
| SKWASM_EXPORT void * | animatedImage_create (SkData *data, int target_width, int target_height) |
| SKWASM_EXPORT void | animatedImage_dispose (void *image) |
| SKWASM_EXPORT int | animatedImage_getFrameCount (void *image) |
| SKWASM_EXPORT int | animatedImage_getRepetitionCount (void *image) |
| SKWASM_EXPORT int | animatedImage_getCurrentFrameDurationMilliseconds (void *image) |
| SKWASM_EXPORT void | animatedImage_decodeNextFrame (void *image) |
| SKWASM_EXPORT void * | animatedImage_getCurrentFrame (void *image) |
| SKWASM_EXPORT void * animatedImage_create | ( | SkData * | data, |
| int | target_width, | ||
| int | target_height | ||
| ) |
Definition at line 11 of file animated_image_stub.cc.
| SKWASM_EXPORT void animatedImage_decodeNextFrame | ( | void * | image | ) |
Definition at line 43 of file animated_image_stub.cc.
| SKWASM_EXPORT void animatedImage_dispose | ( | void * | image | ) |
Definition at line 19 of file animated_image_stub.cc.
| SKWASM_EXPORT void * animatedImage_getCurrentFrame | ( | void * | image | ) |
Definition at line 48 of file animated_image_stub.cc.
| SKWASM_EXPORT int animatedImage_getCurrentFrameDurationMilliseconds | ( | void * | image | ) |
Definition at line 36 of file animated_image_stub.cc.
| SKWASM_EXPORT int animatedImage_getFrameCount | ( | void * | image | ) |
Definition at line 24 of file animated_image_stub.cc.
| SKWASM_EXPORT int animatedImage_getRepetitionCount | ( | void * | image | ) |
Definition at line 30 of file animated_image_stub.cc.