(root)/
freetype-2.13.2/
src/
sdf/
sdf.c
       1  /****************************************************************************
       2   *
       3   * sdf.c
       4   *
       5   *   FreeType Signed Distance Field renderer module component (body only).
       6   *
       7   * Copyright (C) 2020-2023 by
       8   * David Turner, Robert Wilhelm, and Werner Lemberg.
       9   *
      10   * Written by Anuj Verma.
      11   *
      12   * This file is part of the FreeType project, and may only be used,
      13   * modified, and distributed under the terms of the FreeType project
      14   * license, LICENSE.TXT.  By continuing to use, modify, or distribute
      15   * this file you indicate that you have read the license and
      16   * understand and accept it fully.
      17   *
      18   */
      19  
      20  
      21  #define FT_MAKE_OPTION_SINGLE_OBJECT
      22  
      23  #include "ftsdfrend.c"
      24  #include "ftsdfcommon.c"
      25  #include "ftbsdf.c"
      26  #include "ftsdf.c"
      27  
      28  
      29  /* END */