mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-13 19:44:28 +00:00
lottie: fixed an incorrect view clipping problem.
this missing initialization occured an incorrect view clipping.
This commit is contained in:
parent
5ed7034c45
commit
99609c7968
1 changed files with 1 additions and 1 deletions
|
@ -442,7 +442,7 @@ struct LottieLayer : LottieGroup
|
|||
Array<LottieMask*> masks;
|
||||
|
||||
float timeStretch = 1.0f;
|
||||
uint32_t w, h;
|
||||
uint32_t w = 0, h = 0;
|
||||
int32_t inFrame = 0;
|
||||
int32_t outFrame = 0;
|
||||
uint32_t startFrame = 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue