From 666a8b768290d74bed78559846389f1de8e48014 Mon Sep 17 00:00:00 2001 From: Artem Umerov Date: Tue, 17 Jun 2025 23:25:59 +0300 Subject: [PATCH] Fix identity namespace --- src/loaders/lottie/tvgLottieBuilder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/loaders/lottie/tvgLottieBuilder.cpp b/src/loaders/lottie/tvgLottieBuilder.cpp index 13530042..fd0db10a 100644 --- a/src/loaders/lottie/tvgLottieBuilder.cpp +++ b/src/loaders/lottie/tvgLottieBuilder.cpp @@ -1125,7 +1125,7 @@ void LottieBuilder::updateText(LottieLayer* layer, float frameNo) auto& matrix = shape->transform(); if (followPath) { - identity(&matrix); + tvg::identity(&matrix); auto angle = 0.0f; auto halfGlyphWidth = glyph->width * 0.5f; auto position = followPath->position(cursor.x + halfGlyphWidth + firstMargin, angle);