From 1cdefcc128a391acc976207102f7169c535d2a41 Mon Sep 17 00:00:00 2001 From: Eric Hameleers Date: Wed, 25 Aug 2021 12:32:08 +0000 Subject: Initial revision --- libreoffice/build/patches/libreoffice.skia.patch | 10 +++++++ libreoffice/build/patches/skia_freetype211.patch | 37 ++++++++++++++++++++++++ 2 files changed, 47 insertions(+) create mode 100644 libreoffice/build/patches/libreoffice.skia.patch create mode 100644 libreoffice/build/patches/skia_freetype211.patch diff --git a/libreoffice/build/patches/libreoffice.skia.patch b/libreoffice/build/patches/libreoffice.skia.patch new file mode 100644 index 00000000..f060a3a6 --- /dev/null +++ b/libreoffice/build/patches/libreoffice.skia.patch @@ -0,0 +1,10 @@ +--- libreoffice-7.2.0.4/external/skia/UnpackedTarball_skia.mk.orig 2021-08-16 21:56:28.000000000 +0200 ++++ libreoffice-7.2.0.4/external/skia/UnpackedTarball_skia.mk 2021-08-25 08:36:26.702302354 +0200 +@@ -39,6 +39,7 @@ + fast-png-write.patch.1 \ + skia_sk_cpu_sse_level_0_by_default.patch.1 \ + fix-warnings.patch.1 \ ++ skia_freetype211.patch \ + + $(eval $(call gb_UnpackedTarball_set_patchlevel,skia,1)) + diff --git a/libreoffice/build/patches/skia_freetype211.patch b/libreoffice/build/patches/skia_freetype211.patch new file mode 100644 index 00000000..97be7f28 --- /dev/null +++ b/libreoffice/build/patches/skia_freetype211.patch @@ -0,0 +1,37 @@ +--- skia/src/ports/SkFontHost_FreeType_common.cpp.orig 2021-03-01 15:53:09.178606791 +0100 ++++ skia/src/ports/SkFontHost_FreeType_common.cpp 2021-08-12 17:48:32.358901987 +0200 +@@ -665,8 +665,13 @@ + canvas->drawPaint(paint); + break; + } ++#if FREETYPE_MAJOR == 2 && FREETYPE_MINOR >= 11 ++ case FT_COLR_PAINTFORMAT_TRANSFORM: { ++ SkMatrix transform = ToSkMatrix(colrv1_paint.u.transform.affine); ++#else + case FT_COLR_PAINTFORMAT_TRANSFORMED: { + SkMatrix transform = ToSkMatrix(colrv1_paint.u.transformed.affine); ++#endif + + canvas->concat(transform); + break; +@@ -760,12 +765,20 @@ + traverse_result = colrv1_start_glyph(canvas, palette, face, paint.u.colr_glyph.glyphID, + FT_COLOR_NO_ROOT_TRANSFORM); + break; ++#if FREETYPE_MAJOR == 2 && FREETYPE_MINOR >= 11 ++ case FT_COLR_PAINTFORMAT_TRANSFORM: ++#else + case FT_COLR_PAINTFORMAT_TRANSFORMED: ++#endif + canvas->saveLayer(nullptr, nullptr); + // Traverse / draw operation will apply transform. + colrv1_draw_paint(canvas, palette, face, paint); + traverse_result = ++#if FREETYPE_MAJOR == 2 && FREETYPE_MINOR >= 11 ++ colrv1_traverse_paint(canvas, palette, face, paint.u.transform.paint); ++#else + colrv1_traverse_paint(canvas, palette, face, paint.u.transformed.paint); ++#endif + canvas->restore(); + break; + case FT_COLR_PAINTFORMAT_ROTATE: -- cgit v1.2.3