< prev index next >

src/java.desktop/share/native/libfreetype/src/autofit/afcover.h

Print this page


   1 /***************************************************************************/
   2 /*                                                                         */
   3 /*  afcover.h                                                              */
   4 /*                                                                         */
   5 /*    Auto-fitter coverages (specification only).                          */
   6 /*                                                                         */
   7 /*  Copyright 2013-2018 by                                                 */
   8 /*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */
   9 /*                                                                         */
  10 /*  This file is part of the FreeType project, and may only be used,       */
  11 /*  modified, and distributed under the terms of the FreeType project      */
  12 /*  license, LICENSE.TXT.  By continuing to use, modify, or distribute     */
  13 /*  this file you indicate that you have read the license and              */
  14 /*  understand and accept it fully.                                        */
  15 /*                                                                         */
  16 /***************************************************************************/
  17 
  18 
  19   /* This header file can be included multiple times. */
  20   /* Define `COVERAGE' as needed.                     */
  21 
  22 
  23   /* Add new coverages here.  The first and second arguments are the   */
  24   /* coverage name in lowercase and uppercase, respectively, followed  */
  25   /* by a description string.  The last four arguments are the four    */
  26   /* characters defining the corresponding OpenType feature.           */
  27 
  28 #if 0
  29   /* XXX: It's not possible to define blue zone characters in advance. */
  30   COVERAGE( alternative_fractions, ALTERNATIVE_FRACTIONS,
  31             "alternative fractions",
  32             'a', 'f', 'r', 'c' )
  33 #endif
  34 
  35   COVERAGE( petite_capitals_from_capitals, PETITE_CAPITALS_FROM_CAPITALS,
  36             "petite capitals from capitals",


   1 /****************************************************************************
   2  *
   3  * afcover.h
   4  *
   5  *   Auto-fitter coverages (specification only).
   6  *
   7  * Copyright (C) 2013-2019 by
   8  * David Turner, Robert Wilhelm, and Werner Lemberg.
   9  *
  10  * This file is part of the FreeType project, and may only be used,
  11  * modified, and distributed under the terms of the FreeType project
  12  * license, LICENSE.TXT.  By continuing to use, modify, or distribute
  13  * this file you indicate that you have read the license and
  14  * understand and accept it fully.
  15  *
  16  */
  17 
  18 
  19   /* This header file can be included multiple times. */
  20   /* Define `COVERAGE' as needed.                     */
  21 
  22 
  23   /* Add new coverages here.  The first and second arguments are the   */
  24   /* coverage name in lowercase and uppercase, respectively, followed  */
  25   /* by a description string.  The last four arguments are the four    */
  26   /* characters defining the corresponding OpenType feature.           */
  27 
  28 #if 0
  29   /* XXX: It's not possible to define blue zone characters in advance. */
  30   COVERAGE( alternative_fractions, ALTERNATIVE_FRACTIONS,
  31             "alternative fractions",
  32             'a', 'f', 'r', 'c' )
  33 #endif
  34 
  35   COVERAGE( petite_capitals_from_capitals, PETITE_CAPITALS_FROM_CAPITALS,
  36             "petite capitals from capitals",


< prev index next >