[sdf] Added all the necessary filed required by the module.

Added the necessary files required by the `sdf' module. These include files
for both the `sdf' and the `bsdf' renderers. Here is breakdown of what the
specific files will contain:

* src/sdf/ftsdfrend.*: Both the renderers.

* src/sdf/ftsdf.*: The rasterizer for the `sdf' renderer.

* src/sdf/ftbsdf.c: The rasterizer for the `bsdf' renderer.

* src/sdf/ftsdfcommon.h: Commmon properties and functions for both the
  rasterizers.

* src/sdf/ftsdferrs.h: Common error define.

* src/sdf/sdf.c: For building a single object of the entire module.
This commit is contained in:
Anuj Verma 2020-08-16 17:09:22 +05:30
parent 6b81c538ed
commit 29de1ff668
8 changed files with 44 additions and 0 deletions

3
src/sdf/ftbsdf.c Normal file
View File

@ -0,0 +1,3 @@
/* END */

3
src/sdf/ftsdf.c Normal file
View File

@ -0,0 +1,3 @@
/* END */

8
src/sdf/ftsdf.h Normal file
View File

@ -0,0 +1,8 @@
#ifndef FTSDF_H_
#define FTSDF_H_
#endif /* FTSDF_H_ */
/* END */

8
src/sdf/ftsdfcommon.h Normal file
View File

@ -0,0 +1,8 @@
#ifndef FTSDFCOMMON_H_
#define FTSDFCOMMON_H_
#endif /* FTSDFCOMMON_H_ */
/* END */

8
src/sdf/ftsdferrs.h Normal file
View File

@ -0,0 +1,8 @@
#ifndef FTSDFERRS_H_
#define FTSDFERRS_H_
#endif /* FTSDFERRS_H_ */
/* END */

3
src/sdf/ftsdfrend.c Normal file
View File

@ -0,0 +1,3 @@
/* END */

8
src/sdf/ftsdfrend.h Normal file
View File

@ -0,0 +1,8 @@
#ifndef FTSDFREND_H_
#define FTSDFREND_H_
#endif /* FTSDFREND_H_ */
/* END */

3
src/sdf/sdf.c Normal file
View File

@ -0,0 +1,3 @@
/* END */