mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-08 13:43:43 +00:00
lottie: fix build error without extras
After introducing roundness support, the build process did not ensure proper compilation for the case without expression support.
This commit is contained in:
parent
f02fccf57c
commit
7581b08c69
1 changed files with 1 additions and 1 deletions
|
@ -154,7 +154,7 @@ struct LottieExpressions
|
||||||
template<typename Property> bool result(TVG_UNUSED float, TVG_UNUSED Point&, LottieExpression*) { return false; }
|
template<typename Property> bool result(TVG_UNUSED float, TVG_UNUSED Point&, LottieExpression*) { return false; }
|
||||||
template<typename Property> bool result(TVG_UNUSED float, TVG_UNUSED RGB24&, TVG_UNUSED LottieExpression*) { return false; }
|
template<typename Property> bool result(TVG_UNUSED float, TVG_UNUSED RGB24&, TVG_UNUSED LottieExpression*) { return false; }
|
||||||
template<typename Property> bool result(TVG_UNUSED float, TVG_UNUSED Fill*, TVG_UNUSED LottieExpression*) { return false; }
|
template<typename Property> bool result(TVG_UNUSED float, TVG_UNUSED Fill*, TVG_UNUSED LottieExpression*) { return false; }
|
||||||
template<typename Property> bool result(TVG_UNUSED float, TVG_UNUSED Array<PathCommand>&, TVG_UNUSED Array<Point>&, TVG_UNUSED Matrix* transform, TVG_UNUSED LottieExpression*) { return false; }
|
template<typename Property> bool result(TVG_UNUSED float, TVG_UNUSED Array<PathCommand>&, TVG_UNUSED Array<Point>&, TVG_UNUSED Matrix* transform, TVG_UNUSED float, TVG_UNUSED LottieExpression*) { return false; }
|
||||||
void update(TVG_UNUSED float) {}
|
void update(TVG_UNUSED float) {}
|
||||||
static LottieExpressions* instance() { return nullptr; }
|
static LottieExpressions* instance() { return nullptr; }
|
||||||
static void retrieve(TVG_UNUSED LottieExpressions* instance) {}
|
static void retrieve(TVG_UNUSED LottieExpressions* instance) {}
|
||||||
|
|
Loading…
Add table
Reference in a new issue