aboutsummaryrefslogtreecommitdiffhomepage
path: root/gm/animatedGif.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'gm/animatedGif.cpp')
-rw-r--r--gm/animatedGif.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/gm/animatedGif.cpp b/gm/animatedGif.cpp
index 6f7f0ddd1b..03bf66c526 100644
--- a/gm/animatedGif.cpp
+++ b/gm/animatedGif.cpp
@@ -103,7 +103,7 @@ private:
SkAutoCanvasRestore acr(canvas, true);
for (size_t frameIndex = 0; frameIndex < fTotalFrames; frameIndex++) {
this->drawFrame(canvas, frameIndex);
- canvas->translate(fCodec->getInfo().width(), 0);
+ canvas->translate(SkIntToScalar(fCodec->getInfo().width()), 0);
}
}
}
@@ -142,7 +142,7 @@ private:
}
SkAutoCanvasRestore acr(canvas, true);
- canvas->translate(0, fCodec->getInfo().height());
+ canvas->translate(0, SkIntToScalar(fCodec->getInfo().height()));
this->drawFrame(canvas, fFrame);
}