diff options
author | Tony Theodore <tonyt@logyst.com> | 2012-12-17 13:34:53 (GMT) |
---|---|---|
committer | Tony Theodore <tonyt@logyst.com> | 2012-12-17 13:34:53 (GMT) |
commit | 631bb4d1ea2e708ff8692116b1736102126320fd (patch) | |
tree | 496b61f967128bdd1817220a59c2915b4a8624a3 /src/ftgl-test.c | |
parent | dac194fe45a18703b22ff1429c03703c7602e96e (diff) | |
download | mxe-631bb4d1ea2e708ff8692116b1736102126320fd.zip mxe-631bb4d1ea2e708ff8692116b1736102126320fd.tar.gz mxe-631bb4d1ea2e708ff8692116b1736102126320fd.tar.bz2 |
package ftgl: add test program
Diffstat (limited to 'src/ftgl-test.c')
-rw-r--r-- | src/ftgl-test.c | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/src/ftgl-test.c b/src/ftgl-test.c new file mode 100644 index 0000000..eda4db8 --- /dev/null +++ b/src/ftgl-test.c @@ -0,0 +1,44 @@ +/* + * This file is part of MXE. + * See index.html for further information. + * + * This is a modified version of: + * test/CTest.c + */ + + +#include <FTGL/ftgl.h> + +#define ALLOC(ctor, var, arg) \ + var = ctor(arg); \ + if(var == NULL) \ + return 2 + +int main(int argc, char *argv[]) +{ + FTGLfont *f[6]; + (void)argc; + int i; + + ALLOC(ftglCreateBitmapFont, f[0], argv[1]); + ALLOC(ftglCreateExtrudeFont, f[1], argv[1]); + ALLOC(ftglCreateOutlineFont, f[2], argv[1]); + ALLOC(ftglCreatePixmapFont, f[3], argv[1]); + ALLOC(ftglCreatePolygonFont, f[4], argv[1]); + ALLOC(ftglCreateTextureFont, f[5], argv[1]); + + for(i = 0; i < 6; i++) + ftglRenderFont(f[i], "Hello world", FTGL_RENDER_ALL); + + for(i = 0; i < 6; i++) + ftglSetFontFaceSize(f[i], 37, 72); + + for(i = 0; i < 6; i++) + ftglRenderFont(f[i], "Hello world", FTGL_RENDER_ALL); + + for(i = 0; i < 6; i++) + ftglDestroyFont(f[i]); + + return 0; +} + |