Home
last modified time | relevance | path

Searched refs:seekFrame (Results 1 – 15 of 15) sorted by relevance

/external/skia/modules/skottie/tests/
DAudioLayer.cpp105 skottie->seekFrame(0); in DEF_TEST()
109 skottie->seekFrame(20); in DEF_TEST()
114 skottie->seekFrame(50); in DEF_TEST()
120 skottie->seekFrame(70); in DEF_TEST()
126 skottie->seekFrame(80); in DEF_TEST()
131 skottie->seekFrame(100); in DEF_TEST()
/external/skia/modules/canvaskit/
Dskottie_bindings.cpp185 SkRect seekFrame(double t) { in seekFrame() function in __anonb93badeb0111::ManagedAnimation
187 fAnimation->seekFrame(t, &ic); in seekFrame()
303 self.seekFrame(t); in EMSCRIPTEN_BINDINGS()
340 damageRect[0] = self.seekFrame(frame); in EMSCRIPTEN_BINDINGS()
342 .function("seekFrame" , &ManagedAnimation::seekFrame) in EMSCRIPTEN_BINDINGS()
Dskottie.js111 CanvasKit.ManagedAnimation.prototype.seekFrame = function(frame, optDamageRect) { method in CanvasKit.ManagedAnimation
Dexterns.js114 seekFrame: function() {},
/external/skia/experimental/skottiekit/
Dskottiekit_bindings.cpp134 SkRect seekFrame(double t) { in seekFrame() function in __anona3893b0f0111::ManagedAnimation
136 fAnimation->seekFrame(t, &ic); in seekFrame()
366 self.seekFrame(t); in EMSCRIPTEN_BINDINGS()
389 .function("seekFrame" , &ManagedAnimation::seekFrame) in EMSCRIPTEN_BINDINGS()
/external/skqp/src/codec/
DSkWuffsCodec.cpp188 Result seekFrame(int frameIndex);
388 SkCodec::Result result = this->seekFrame(options.fFrameIndex); in onStartIncrementalDecode()
638 if (this->seekFrame(i) != SkCodec::kSuccess) { in readFrames()
665 SkCodec::Result SkWuffsCodec::seekFrame(int frameIndex) { in seekFrame() function in SkWuffsCodec
/external/skia/src/codec/
DSkWuffsCodec.cpp246 Result seekFrame(WhichDecoder which, int frameIndex);
422 SkCodec::Result result = this->seekFrame(WhichDecoder::kIncrDecode, options.fFrameIndex); in onStartIncrementalDecode()
781 if (this->seekFrame(WhichDecoder::kIncrDecode, i) != SkCodec::kSuccess) { in onGetFrameCountInternal()
832 SkCodec::Result SkWuffsCodec::seekFrame(WhichDecoder which, int frameIndex) { in seekFrame() function in SkWuffsCodec
/external/skia/modules/skottie/include/
DSkottie.h207 void seekFrame(double t, sksg::InvalidationController* ic = nullptr);
/external/skia/tools/
Dskottie2movie.cpp34 anim->seekFrame(frame); in produce_frame()
/external/skia/modules/skottie/src/
DSkottie.cpp492 void Animation::seekFrame(double t, sksg::InvalidationController* ic) { in seekFrame() function in skottie::Animation
510 this->seekFrame(t * fFPS, ic); in seekFrameTime()
DSkottieTool.cpp357 anim->seekFrame(frame0 + i * fps_scale); in main()
/external/skia/modules/canvaskit/tests/
Dskottie.spec.js110 animation.seekFrame(t);
/external/skia/tools/viewer/
DSkottieSlide.cpp274 fAnimation->seekFrame(fCurrentFrame, fShowAnimationInval ? &fInvalController in animate()
/external/skia/modules/canvaskit/npm_build/types/
Dcanvaskit-wasm-tests.ts693 const rect2 = anim.seekFrame(12.3);
694 anim.seekFrame(12.3, rect2);
Dindex.d.ts2696 seekFrame(frame: number, damageRect?: Rect): Rect; method