summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWerner Lemberg <wl@gnu.org>2020-12-24 08:29:05 +0100
committerWerner Lemberg <wl@gnu.org>2020-12-24 08:29:05 +0100
commit04a64432541e8185eb176ce59ec6a08159ee5477 (patch)
treefe74a278033ddf9342e4e9fa44f9b31ca44a535c
parenteb2b5bb10754da426b4ea9da78fbb017f0bcb9ec (diff)
downloadfreetype2-04a64432541e8185eb176ce59ec6a08159ee5477.tar.gz
[sdf] Add copyright notices.
-rw-r--r--src/sdf/ftbsdf.c20
-rw-r--r--src/sdf/ftsdf.c20
-rw-r--r--src/sdf/ftsdf.h20
-rw-r--r--src/sdf/ftsdfcommon.h20
-rw-r--r--src/sdf/ftsdferrs.h20
-rw-r--r--src/sdf/ftsdfrend.c20
-rw-r--r--src/sdf/ftsdfrend.h20
-rw-r--r--src/sdf/sdf.c20
8 files changed, 160 insertions, 0 deletions
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 <freetype/internal/ftobjs.h>
#include <freetype/internal/ftdebug.h>
@@ -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 <freetype/internal/ftobjs.h>
#include <freetype/internal/ftdebug.h>
@@ -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 <freetype/internal/ftdebug.h>
#include <freetype/internal/ftobjs.h>
@@ -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 */