From 04a64432541e8185eb176ce59ec6a08159ee5477 Mon Sep 17 00:00:00 2001 From: Werner Lemberg Date: Thu, 24 Dec 2020 08:29:05 +0100 Subject: [PATCH] [sdf] Add copyright notices. --- src/sdf/ftbsdf.c | 20 ++++++++++++++++++++ src/sdf/ftsdf.c | 20 ++++++++++++++++++++ src/sdf/ftsdf.h | 20 ++++++++++++++++++++ src/sdf/ftsdfcommon.h | 20 ++++++++++++++++++++ src/sdf/ftsdferrs.h | 20 ++++++++++++++++++++ src/sdf/ftsdfrend.c | 20 ++++++++++++++++++++ src/sdf/ftsdfrend.h | 20 ++++++++++++++++++++ src/sdf/sdf.c | 20 ++++++++++++++++++++ 8 files changed, 160 insertions(+) diff --git a/src/sdf/ftbsdf.c b/src/sdf/ftbsdf.c index 13dbd4511..dd28c508b 100644 --- a/src/sdf/ftbsdf.c +++ b/src/sdf/ftbsdf.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 #include @@ -1313,4 +1332,5 @@ (FT_Raster_Done_Func) bsdf_raster_done /* raster_done */ ) + /* END */ diff --git a/src/sdf/ftsdf.c b/src/sdf/ftsdf.c index 77794dd96..ef3922aae 100644 --- a/src/sdf/ftsdf.c +++ b/src/sdf/ftsdf.c @@ -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 #include @@ -3969,4 +3988,5 @@ (FT_Raster_Done_Func) sdf_raster_done /* raster_done */ ) + /* END */ diff --git a/src/sdf/ftsdf.h b/src/sdf/ftsdf.h index a8e243dee..a8338440c 100644 --- a/src/sdf/ftsdf.h +++ b/src/sdf/ftsdf.h @@ -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 */ diff --git a/src/sdf/ftsdfcommon.h b/src/sdf/ftsdfcommon.h index 22ec1d134..57c3e974e 100644 --- a/src/sdf/ftsdfcommon.h +++ b/src/sdf/ftsdfcommon.h @@ -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 */ diff --git a/src/sdf/ftsdferrs.h b/src/sdf/ftsdferrs.h index b9f412fe9..2eb44aa61 100644 --- a/src/sdf/ftsdferrs.h +++ b/src/sdf/ftsdferrs.h @@ -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 */ diff --git a/src/sdf/ftsdfrend.c b/src/sdf/ftsdfrend.c index 487010769..4f77909a6 100644 --- a/src/sdf/ftsdfrend.c +++ b/src/sdf/ftsdfrend.c @@ -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 #include @@ -569,4 +588,5 @@ (FT_Raster_Funcs*)&ft_bitmap_sdf_raster /* raster_class */ ) + /* END */ diff --git a/src/sdf/ftsdfrend.h b/src/sdf/ftsdfrend.h index 33e93385f..506e2b607 100644 --- a/src/sdf/ftsdfrend.h +++ b/src/sdf/ftsdfrend.h @@ -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 */ diff --git a/src/sdf/sdf.c b/src/sdf/sdf.c index 78677873c..35e7c8b21 100644 --- a/src/sdf/sdf.c +++ b/src/sdf/sdf.c @@ -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 */