[sdf] Add copyright notices.

wl/meson-logging
Werner Lemberg 4 years ago
parent eb2b5bb107
commit 04a6443254
  1. 20
      src/sdf/ftbsdf.c
  2. 20
      src/sdf/ftsdf.c
  3. 20
      src/sdf/ftsdf.h
  4. 20
      src/sdf/ftsdfcommon.h
  5. 20
      src/sdf/ftsdferrs.h
  6. 20
      src/sdf/ftsdfrend.c
  7. 20
      src/sdf/ftsdfrend.h
  8. 20
      src/sdf/sdf.c

@ -1,3 +1,22 @@
/****************************************************************************
*
* ftbsdf.c
*
* Signed Distance Field support for bitmap fonts (body only).
*
* Copyright (C) 2020 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* Written by Anuj Verma.
*
* This file is part of the FreeType project, and may only be used,
* modified, and distributed under the terms of the FreeType project
* license, LICENSE.TXT. By continuing to use, modify, or distribute
* this file you indicate that you have read the license and
* understand and accept it fully.
*
*/
#include <freetype/internal/ftobjs.h>
#include <freetype/internal/ftdebug.h>
@ -1313,4 +1332,5 @@
(FT_Raster_Done_Func) bsdf_raster_done /* raster_done */
)
/* END */

@ -1,3 +1,22 @@
/****************************************************************************
*
* ftsdf.c
*
* Signed Distance Field support for outline fonts (body).
*
* Copyright (C) 2020 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* Written by Anuj Verma.
*
* This file is part of the FreeType project, and may only be used,
* modified, and distributed under the terms of the FreeType project
* license, LICENSE.TXT. By continuing to use, modify, or distribute
* this file you indicate that you have read the license and
* understand and accept it fully.
*
*/
#include <freetype/internal/ftobjs.h>
#include <freetype/internal/ftdebug.h>
@ -3969,4 +3988,5 @@
(FT_Raster_Done_Func) sdf_raster_done /* raster_done */
)
/* END */

@ -1,3 +1,22 @@
/****************************************************************************
*
* ftsdf.h
*
* Signed Distance Field support (specification).
*
* Copyright (C) 2020 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* Written by Anuj Verma.
*
* This file is part of the FreeType project, and may only be used,
* modified, and distributed under the terms of the FreeType project
* license, LICENSE.TXT. By continuing to use, modify, or distribute
* this file you indicate that you have read the license and
* understand and accept it fully.
*
*/
#ifndef FTSDF_H_
#define FTSDF_H_
@ -74,4 +93,5 @@ FT_END_HEADER
#endif /* FTSDF_H_ */
/* END */

@ -1,3 +1,22 @@
/****************************************************************************
*
* ftsdfcommon.h
*
* Auxiliary data for Signed Distance Field support (specification only).
*
* Copyright (C) 2020 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* Written by Anuj Verma.
*
* This file is part of the FreeType project, and may only be used,
* modified, and distributed under the terms of the FreeType project
* license, LICENSE.TXT. By continuing to use, modify, or distribute
* this file you indicate that you have read the license and
* understand and accept it fully.
*
*/
/****************************************************
*
@ -148,4 +167,5 @@ FT_END_HEADER
#endif /* FTSDFCOMMON_H_ */
/* END */

@ -1,3 +1,22 @@
/****************************************************************************
*
* ftsdferrs.h
*
* Signed Distance Field error codes (specification only).
*
* Copyright (C) 2020 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* Written by Anuj Verma.
*
* This file is part of the FreeType project, and may only be used,
* modified, and distributed under the terms of the FreeType project
* license, LICENSE.TXT. By continuing to use, modify, or distribute
* this file you indicate that you have read the license and
* understand and accept it fully.
*
*/
#ifndef FTSDFERRS_H_
#define FTSDFERRS_H_
@ -14,4 +33,5 @@
#endif /* FTSDFERRS_H_ */
/* END */

@ -1,3 +1,22 @@
/****************************************************************************
*
* ftsdfrend.c
*
* Signed Distance Field renderer interface (body).
*
* Copyright (C) 2020 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* Written by Anuj Verma.
*
* This file is part of the FreeType project, and may only be used,
* modified, and distributed under the terms of the FreeType project
* license, LICENSE.TXT. By continuing to use, modify, or distribute
* this file you indicate that you have read the license and
* understand and accept it fully.
*
*/
#include <freetype/internal/ftdebug.h>
#include <freetype/internal/ftobjs.h>
@ -569,4 +588,5 @@
(FT_Raster_Funcs*)&ft_bitmap_sdf_raster /* raster_class */
)
/* END */

@ -1,3 +1,22 @@
/****************************************************************************
*
* ftsdfrend.h
*
* Signed Distance Field renderer interface (specification).
*
* Copyright (C) 2020 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* Written by Anuj Verma.
*
* This file is part of the FreeType project, and may only be used,
* modified, and distributed under the terms of the FreeType project
* license, LICENSE.TXT. By continuing to use, modify, or distribute
* this file you indicate that you have read the license and
* understand and accept it fully.
*
*/
#ifndef FTSDFREND_H_
#define FTSDFREND_H_
@ -95,4 +114,5 @@ FT_END_HEADER
#endif /* FTSDFREND_H_ */
/* END */

@ -1,3 +1,22 @@
/****************************************************************************
*
* sdf.c
*
* FreeType Signed Distance Field renderer module component (body only).
*
* Copyright (C) 2020 by
* David Turner, Robert Wilhelm, and Werner Lemberg.
*
* Written by Anuj Verma.
*
* This file is part of the FreeType project, and may only be used,
* modified, and distributed under the terms of the FreeType project
* license, LICENSE.TXT. By continuing to use, modify, or distribute
* this file you indicate that you have read the license and
* understand and accept it fully.
*
*/
#define FT_MAKE_OPTION_SINGLE_OBJECT
@ -5,4 +24,5 @@
#include "ftbsdf.c"
#include "ftsdf.c"
/* END */

Loading…
Cancel
Save