Renderer in editor

Starting to let tests run.

Diffs=
a0a6c0d3b Renderer in editor (#7495)
876a2dca5 Fix crash when skinnable isn’t found. (#7554)
8fbe13788 change how forAll iterates over children (#7546)
93fb6eb83 Fix jpeg and png decode overflows and error handling. (#7535)

Co-authored-by: Luigi Rosso <luigi-rosso@users.noreply.github.com>
Co-authored-by: hernan <hernan@rive.app>
This commit is contained in:
luigi-rosso
2024-07-11 17:52:36 +00:00
parent 8a101ec945
commit 4b30f0433b
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
d5ed4ca9b68fbea5f9bc5aa6864e2750a9749506
a0a6c0d3bd385f32dd51e1fbcb75306332b9d1cc

View File

@ -482,7 +482,7 @@ class Text extends TextBase with TextStyleContainer implements Sizable {
transform);
pathTransform = transform.mat4;
} else {
pathTransform = glyphInfo.pathTransform(x, y + line.baseline);
pathTransform = glyphInfo.pathTransform(x, y + line.baseline).mat4;
}
var renderPath = path.transform(pathTransform);
var style = styleFromShaperId(run.styleId);