├── .circleci └── config.yml ├── .gitignore ├── LICENSE ├── Makefile.am ├── README.md ├── aclocal └── ax_cflags_gcc_option.m4 ├── amlocal └── uncrustify.cfg ├── bootstrap ├── configure.ac ├── do-configure-debug ├── examples ├── font-ubuntumono-10.c └── font-ubuntumono-10.h ├── fonts ├── DejaVuSerif.ttf ├── UbuntuMonoB.ttf └── UbuntuMonoR.ttf ├── include ├── Makefile.am ├── cc_config.h.in └── config.h ├── make-all ├── src ├── Makefile.am ├── fontem.c ├── fontfinder.c ├── fontrender.c ├── fontrender_l.c ├── fontrender_rgb16.c ├── fontrender_rgba32.c ├── fonttest.c └── resource │ └── fontem.h └── tests ├── Makefile.am ├── generate-all ├── params ├── test-all └── test-data ├── 008a14c4e0ae783293f753c270f0ba89 ├── 0da8608277aeab5c1e8e3c5d91bc5e7b ├── 212b1b5dcbe34c06a4a4cbc45b689f70 ├── 41fcb752d1b2ab9c06ddeae947fd35da ├── 48f550d629c2ea64b042641b2cd110a0 ├── 65b10a2c6adfa411bba7a7fe7f2801cc ├── 6ece5fb6ced916236e10d0381edfb353 ├── 7fa82c5af0b3a82c6802298fa0b0cd5b ├── a29399fb27450e3ccf6783d227ea4553 ├── c42f4ba573999d6fe920e7c86f5198cf ├── d1af4c835a961a8f374c3c010473d1ae ├── ed8139e1ad15fa69294a4eafd9b9efeb └── fontlist /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/README.md -------------------------------------------------------------------------------- /aclocal/ax_cflags_gcc_option.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/aclocal/ax_cflags_gcc_option.m4 -------------------------------------------------------------------------------- /amlocal/uncrustify.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/amlocal/uncrustify.cfg -------------------------------------------------------------------------------- /bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/bootstrap -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/configure.ac -------------------------------------------------------------------------------- /do-configure-debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/do-configure-debug -------------------------------------------------------------------------------- /examples/font-ubuntumono-10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/examples/font-ubuntumono-10.c -------------------------------------------------------------------------------- /examples/font-ubuntumono-10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/examples/font-ubuntumono-10.h -------------------------------------------------------------------------------- /fonts/DejaVuSerif.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/fonts/DejaVuSerif.ttf -------------------------------------------------------------------------------- /fonts/UbuntuMonoB.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/fonts/UbuntuMonoB.ttf -------------------------------------------------------------------------------- /fonts/UbuntuMonoR.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/fonts/UbuntuMonoR.ttf -------------------------------------------------------------------------------- /include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/include/Makefile.am -------------------------------------------------------------------------------- /include/cc_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/include/cc_config.h.in -------------------------------------------------------------------------------- /include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/include/config.h -------------------------------------------------------------------------------- /make-all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/make-all -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/fontem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/src/fontem.c -------------------------------------------------------------------------------- /src/fontfinder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/src/fontfinder.c -------------------------------------------------------------------------------- /src/fontrender.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/src/fontrender.c -------------------------------------------------------------------------------- /src/fontrender_l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/src/fontrender_l.c -------------------------------------------------------------------------------- /src/fontrender_rgb16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/src/fontrender_rgb16.c -------------------------------------------------------------------------------- /src/fontrender_rgba32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/src/fontrender_rgba32.c -------------------------------------------------------------------------------- /src/fonttest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/src/fonttest.c -------------------------------------------------------------------------------- /src/resource/fontem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/src/resource/fontem.h -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/generate-all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/tests/generate-all -------------------------------------------------------------------------------- /tests/params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/tests/params -------------------------------------------------------------------------------- /tests/test-all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/tests/test-all -------------------------------------------------------------------------------- /tests/test-data/008a14c4e0ae783293f753c270f0ba89: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/tests/test-data/008a14c4e0ae783293f753c270f0ba89 -------------------------------------------------------------------------------- /tests/test-data/0da8608277aeab5c1e8e3c5d91bc5e7b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/tests/test-data/0da8608277aeab5c1e8e3c5d91bc5e7b -------------------------------------------------------------------------------- /tests/test-data/212b1b5dcbe34c06a4a4cbc45b689f70: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/tests/test-data/212b1b5dcbe34c06a4a4cbc45b689f70 -------------------------------------------------------------------------------- /tests/test-data/41fcb752d1b2ab9c06ddeae947fd35da: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/tests/test-data/41fcb752d1b2ab9c06ddeae947fd35da -------------------------------------------------------------------------------- /tests/test-data/48f550d629c2ea64b042641b2cd110a0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/tests/test-data/48f550d629c2ea64b042641b2cd110a0 -------------------------------------------------------------------------------- /tests/test-data/65b10a2c6adfa411bba7a7fe7f2801cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/tests/test-data/65b10a2c6adfa411bba7a7fe7f2801cc -------------------------------------------------------------------------------- /tests/test-data/6ece5fb6ced916236e10d0381edfb353: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/tests/test-data/6ece5fb6ced916236e10d0381edfb353 -------------------------------------------------------------------------------- /tests/test-data/7fa82c5af0b3a82c6802298fa0b0cd5b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/tests/test-data/7fa82c5af0b3a82c6802298fa0b0cd5b -------------------------------------------------------------------------------- /tests/test-data/a29399fb27450e3ccf6783d227ea4553: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/tests/test-data/a29399fb27450e3ccf6783d227ea4553 -------------------------------------------------------------------------------- /tests/test-data/c42f4ba573999d6fe920e7c86f5198cf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/tests/test-data/c42f4ba573999d6fe920e7c86f5198cf -------------------------------------------------------------------------------- /tests/test-data/d1af4c835a961a8f374c3c010473d1ae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/tests/test-data/d1af4c835a961a8f374c3c010473d1ae -------------------------------------------------------------------------------- /tests/test-data/ed8139e1ad15fa69294a4eafd9b9efeb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/tests/test-data/ed8139e1ad15fa69294a4eafd9b9efeb -------------------------------------------------------------------------------- /tests/test-data/fontlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisy/fontem/HEAD/tests/test-data/fontlist --------------------------------------------------------------------------------