shithub: freetype+ttf2subf

Download patch

ref: ab10ffcdd55f289fc0d335cf752acbf68edff172
parent: 5f18d867c0bf075153c8d6abb7e8d248ad469b56
author: Werner Lemberg <[email protected]>
date: Wed Apr 26 09:41:40 EDT 2017

* include/freetype/freetype.h (FT_Render_Mode): Fix order.

This retains backwards compatibility.

Noted by Alexei.

git/fs: mount .git/fs: mount/attach disallowed
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2017-04-26  Werner Lemberg  <[email protected]>
+
+	* include/freetype/freetype.h (FT_Render_Mode): Fix order.
+
+	This retains backwards compatibility.
+
+	Noted by Alexei.
+
 2017-04-22  Werner Lemberg  <[email protected]>
 
 	[truetype] Do linear scaling for FT_LOAD_NO_HINTING (#50470).
--- a/include/freetype/freetype.h
+++ b/include/freetype/freetype.h
@@ -3120,10 +3120,10 @@
   {
     FT_RENDER_MODE_NORMAL = 0,
     FT_RENDER_MODE_LIGHT,
-    FT_RENDER_MODE_SLIGHT,
     FT_RENDER_MODE_MONO,
     FT_RENDER_MODE_LCD,
     FT_RENDER_MODE_LCD_V,
+    FT_RENDER_MODE_SLIGHT,
 
     FT_RENDER_MODE_MAX