mingw-freetype/freetype-2.10.0-internal-outline.patch

75 lines
2.6 KiB
Diff
Raw Normal View History

2020-07-18 08:37:58 +00:00
diff -rupN --no-dereference freetype-2.10.2/include/freetype/ftoutln.h freetype-2.10.2-new/include/freetype/ftoutln.h
--- freetype-2.10.2/include/freetype/ftoutln.h 2020-01-19 17:02:27.000000000 +0100
+++ freetype-2.10.2-new/include/freetype/ftoutln.h 2020-07-18 10:31:21.614160142 +0200
2019-08-29 22:43:02 +00:00
@@ -165,6 +165,15 @@ FT_BEGIN_HEADER
FT_Int numContours,
FT_Outline *anoutline );
+ /*
+ * Kept downstream for ABI compatibility only.
+ * It just throws error now. Remove once soname has been bumped.
+ */
+ FT_EXPORT( FT_Error )
+ FT_Outline_New_Internal( FT_Memory memory,
+ FT_UInt numPoints,
+ FT_Int numContours,
+ FT_Outline *anoutline );
/**************************************************************************
*
@@ -192,6 +201,13 @@ FT_BEGIN_HEADER
FT_Outline_Done( FT_Library library,
FT_Outline* outline );
+ /*
+ * Kept downstream for ABI compatibility only.
+ * It just throws error now. Remove once soname has been bumped.
+ */
+ FT_EXPORT( FT_Error )
+ FT_Outline_Done_Internal( FT_Memory memory,
+ FT_Outline* outline );
/**************************************************************************
*
2020-07-18 08:37:58 +00:00
diff -rupN --no-dereference freetype-2.10.2/src/base/ftoutln.c freetype-2.10.2-new/src/base/ftoutln.c
--- freetype-2.10.2/src/base/ftoutln.c 2020-01-19 17:02:27.000000000 +0100
+++ freetype-2.10.2-new/src/base/ftoutln.c 2020-07-18 10:31:21.614160142 +0200
2020-02-07 16:49:35 +00:00
@@ -290,6 +290,19 @@
2019-08-29 22:43:02 +00:00
/* documentation is in ftoutln.h */
+ /*
+ * Kept downstream for ABI compatibility only.
+ * It just throws error now. Remove once soname has been bumped.
+ */
+ FT_EXPORT_DEF( FT_Error )
+ FT_Outline_New_Internal( FT_Memory memory,
+ FT_UInt numPoints,
+ FT_Int numContours,
+ FT_Outline *anoutline )
+ {
+ return FT_THROW( Unimplemented_Feature );
+ }
+
FT_EXPORT_DEF( FT_Error )
FT_Outline_New( FT_Library library,
FT_UInt numPoints,
2020-02-07 16:49:35 +00:00
@@ -422,6 +435,17 @@
2019-08-29 22:43:02 +00:00
/* documentation is in ftoutln.h */
+ /*
+ * Kept downstream for ABI compatibility only.
+ * It just throws error now. Remove once soname has been bumped.
+ */
+ FT_EXPORT_DEF( FT_Error )
+ FT_Outline_Done_Internal( FT_Memory memory,
+ FT_Outline* outline )
+ {
+ return FT_THROW( Unimplemented_Feature );
+ }
+
FT_EXPORT_DEF( FT_Error )
FT_Outline_Done( FT_Library library,
FT_Outline* outline )