@@ -4318,14 +4318,13 @@ FT_BEGIN_HEADER
43184318 * property `no-stem-darkening` provided by the 'autofit', 'cff',
43194319 * 'type1', and 't1cid' modules; see @no-stem-darkening).
43204320 *
4321- * * @FT_PARAM_TAG_LCD_FILTER_WEIGHTS (LCD filter weights, corresponding
4322- * to function @FT_Library_SetLcdFilterWeights).
4323- *
43244321 * * @FT_PARAM_TAG_RANDOM_SEED (seed value for the CFF, Type~1, and CID
43254322 * 'random' operator, corresponding to the `random-seed` property
43264323 * provided by the 'cff', 'type1', and 't1cid' modules; see
43274324 * @random-seed).
43284325 *
4326+ * * @FT_PARAM_TAG_LCD_FILTER_WEIGHTS (no longer supported).
4327+ *
43294328 * Pass `NULL` as `data` in @FT_Parameter for a given tag to reset the
43304329 * option and use the library or module default again.
43314330 *
@@ -4352,25 +4351,17 @@ FT_BEGIN_HEADER
43524351 * FT_Bool darken_stems = 1;
43534352 *
43544353 * FT_Parameter property2;
4355- * FT_LcdFiveTapFilter custom_weight =
4356- * { 0x11, 0x44, 0x56, 0x44, 0x11 };
4357- *
4358- * FT_Parameter property3;
43594354 * FT_Int32 random_seed = 314159265;
43604355 *
4361- * FT_Parameter properties[3] = { property1,
4362- * property2,
4363- * property3 };
4356+ * FT_Parameter properties[2] = { property1,
4357+ * property2 };
43644358 *
43654359 *
43664360 * property1.tag = FT_PARAM_TAG_STEM_DARKENING;
43674361 * property1.data = &darken_stems;
43684362 *
4369- * property2.tag = FT_PARAM_TAG_LCD_FILTER_WEIGHTS;
4370- * property2.data = custom_weight;
4371- *
4372- * property3.tag = FT_PARAM_TAG_RANDOM_SEED;
4373- * property3.data = &random_seed;
4363+ * property2.tag = FT_PARAM_TAG_RANDOM_SEED;
4364+ * property2.data = &random_seed;
43744365 *
43754366 * FT_Face_Properties( face, 3, properties );
43764367 * ```
@@ -4381,7 +4372,7 @@ FT_BEGIN_HEADER
43814372 * FT_Parameter property;
43824373 *
43834374 *
4384- * property.tag = FT_PARAM_TAG_LCD_FILTER_WEIGHTS ;
4375+ * property.tag = FT_PARAM_TAG_STEM_DARKENING ;
43854376 * property.data = NULL;
43864377 *
43874378 * FT_Face_Properties( face, 1, &property );
@@ -5178,7 +5169,7 @@ FT_BEGIN_HEADER
51785169 */
51795170#define FREETYPE_MAJOR 2
51805171#define FREETYPE_MINOR 14
5181- #define FREETYPE_PATCH 1
5172+ #define FREETYPE_PATCH 2
51825173
51835174
51845175 /**************************************************************************
0 commit comments