lottieplayer: keep API coding convention.

Not use "get" prefix so far.

Change-Id: Iabc2852cd78d5ac4f4fa29f8b3b7195eafe1d804
This commit is contained in:
Hermet Park
2018-08-31 17:27:49 +09:00
committed by Subhransu Mohanty
parent d3be153e82
commit 46ec17191e
3 changed files with 12 additions and 13 deletions

View File

@@ -238,8 +238,8 @@ void LottieView::render()
void LottieView::setFilePath(const char *filePath)
{
mPlayer->setFilePath(filePath);
mFrameRate = mPlayer->getFrameRate();
mTotalFrame = mPlayer->getTotalFrame();
mFrameRate = mPlayer->frameRate();
mTotalFrame = mPlayer->totalFrame();
}
void LottieView::setSize(int w, int h)