aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/viewer
diff options
context:
space:
mode:
authorGravatar Florin Malita <fmalita@chromium.org>2018-05-31 16:45:29 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-06-01 13:10:15 +0000
commit911ae4066eb79f9a95a2d81e02d12c005b2db066 (patch)
tree0b7f2a422eac0a881c8615b039e2f832766d1ed4 /tools/viewer
parent22f673d42087853a151fcd5e95c129be83065cdc (diff)
[skottie] Remove inPoint/outPoint/frameRate from public API
TBR= Change-Id: Ice4de3abe350c4570c22e859a36dbd445527fa41 Reviewed-on: https://skia-review.googlesource.com/131300 Reviewed-by: Florin Malita <fmalita@chromium.org> Commit-Queue: Florin Malita <fmalita@chromium.org>
Diffstat (limited to 'tools/viewer')
-rw-r--r--tools/viewer/SkottieSlide.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/tools/viewer/SkottieSlide.cpp b/tools/viewer/SkottieSlide.cpp
index 8eecf43c98..aa085336f9 100644
--- a/tools/viewer/SkottieSlide.cpp
+++ b/tools/viewer/SkottieSlide.cpp
@@ -65,11 +65,10 @@ void SkottieSlide::load(SkScalar w, SkScalar h) {
if (fAnimation) {
fAnimation->setShowInval(fShowAnimationInval);
- SkDebugf("loaded Bodymovin animation v: %s, size: [%f %f], fr: %f\n",
+ SkDebugf("loaded Bodymovin animation v: %s, size: [%f %f]\n",
fAnimation->version().c_str(),
fAnimation->size().width(),
- fAnimation->size().height(),
- fAnimation->frameRate());
+ fAnimation->size().height());
} else {
SkDebugf("failed to load Bodymovin animation: %s\n", fPath.c_str());
}