Home
last modified time | relevance | path

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

/third_party/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()
/third_party/skia/modules/canvaskit/
Dskottie_bindings.cpp185 SkRect seekFrame(double t) { in seekFrame() function in __anonc29381d40111::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.js118 seekFrame: function() {},
/third_party/skia/experimental/skottiekit/
Dskottiekit_bindings.cpp134 SkRect seekFrame(double t) { in seekFrame() function in __anon81fc85180111::ManagedAnimation
136 fAnimation->seekFrame(t, &ic); in seekFrame()
366 self.seekFrame(t); in EMSCRIPTEN_BINDINGS()
389 .function("seekFrame" , &ManagedAnimation::seekFrame) in EMSCRIPTEN_BINDINGS()
/third_party/skia/platform_tools/android/apps/AndroidKit/src/main/java/org/skia/androidkit/
DSkottieAnimation.java69 public void seekFrame(double f) { in seekFrame() method in SkottieAnimation
/third_party/flutter/skia/src/codec/
DSkWuffsCodec.cpp155 Result seekFrame(int frameIndex);
328 SkCodec::Result result = this->seekFrame(options.fFrameIndex); in onStartIncrementalDecode()
551 if (this->seekFrame(i) != SkCodec::kSuccess) { in readFrames()
578 SkCodec::Result SkWuffsCodec::seekFrame(int frameIndex) { in seekFrame() function in SkWuffsCodec
/third_party/skia/modules/androidkit/src/
DSkottieAnimation.cpp52 animation->seekFrame(frame); in Animation_SeekFrame()
/third_party/skia/src/codec/
DSkWuffsCodec.cpp250 Result seekFrame(WhichDecoder which, int frameIndex);
426 SkCodec::Result result = this->seekFrame(WhichDecoder::kIncrDecode, options.fFrameIndex); in onStartIncrementalDecode()
785 if (this->seekFrame(WhichDecoder::kIncrDecode, i) != SkCodec::kSuccess) { in onGetFrameCountInternal()
836 SkCodec::Result SkWuffsCodec::seekFrame(WhichDecoder which, int frameIndex) { in seekFrame() function in SkWuffsCodec
/third_party/skia/tools/
Dskottie2movie.cpp34 anim->seekFrame(frame); in produce_frame()
/third_party/skia/modules/skottie/include/
DSkottie.h237 void seekFrame(double t, sksg::InvalidationController* ic = nullptr);
/third_party/skia/platform_tools/android/apps/AndroidKit/src/main/java/org/skia/androidkit/util/
DSkottieView.java183 public void seekFrame(double f) { in seekFrame() method in SkottieView
/third_party/skia/modules/skottie/src/
DSkottie.cpp505 void Animation::seekFrame(double t, sksg::InvalidationController* ic) { in seekFrame() function in skottie::Animation
523 this->seekFrame(t * fFPS, ic); in seekFrameTime()
DSkottieTool.cpp348 anim->seekFrame(frame0 + i * fps_scale); in main()
/third_party/skia/modules/canvaskit/tests/
Dskottie.spec.js110 animation.seekFrame(t);
/third_party/skia/tools/viewer/
DSkottieSlide.cpp274 fAnimation->seekFrame(fCurrentFrame, fShowAnimationInval ? &fInvalController in animate()
/third_party/skia/modules/canvaskit/npm_build/types/
Dcanvaskit-wasm-tests.ts699 const rect2 = anim.seekFrame(12.3);
700 anim.seekFrame(12.3, rect2);
Dindex.d.ts2764 seekFrame(frame: number, damageRect?: Rect): Rect; method