Textogl
1.1.2
OpenGL Text renderer
|
Textogl renders text in OpenGL from nearly any font (any format supported by Freetype).
Textogl uses CMake to build
$ mkdir build && cd build $ cmake .. -DCMAKE_INSTALL_PREFIX=<prefix path> # add -DBUILD_SHARED_LIBS=1 for a shared libary, add -DUSE_GLM=0 to skip checking for GLM $ make # make install
Textogl is configured to generate a .deb package file. To do so, substitute the above with the following:
$ mkdir build && cd build $ cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_SHARED_LIBS=1 $ make $ cpack # dpkg -i libtextogl-dev*.deb
If doxygen is installed, library documentation can be generated with: $ make doc