summaryrefslogtreecommitdiff
path: root/2d/wrappers/ftgl.scm
Commit message (Collapse)AuthorAgeFilesLines
* Rewrite font module.David Thompson2014-02-161-204/+0
| | | | | | | | | | | | | | FTGL has been dropped in favor of SDL_ttf. * 2d/font: Rewrite everything! * 2d/wrappers/ftgl.scm: Delete it. * configure.ac: Check for SDL_ttf. * data/Makefile.am (shaders_DATA): Add font shaders. * data/shaders/font-fragment.glsl: New shader. * data/shaders/font-vertex.glsl: New shader. * examples/font.scm: Rewrite font example. * examples/fonts/AUTHORS: Delete it. * examples/fonts/Boxy-Bold.ttf: Delete it.
* Add error handling to ftgl-create-texture-font.David Thompson2013-10-111-2/+6
|
* Make the origin the top-left corner of the window again.David Thompson2013-08-261-1/+15
|
* Add (ice-9 format) module to imports for freeimage and ftglPieter Slabbert2013-08-231-1/+2
| | | | | | | | | | | | | | | | | freeimage.scm and ftgl.scm were throwing warnings when running make about a unsupported format option GEN 2d/wrappers/freeimage.go 2d/wrappers/freeimage.scm:120:6: warning: "<freeimage-bitmap ~x width: ~d height: ~d bpp: ~d>": unsupported format option ~x, use (ice-9 format) instead wrote `2d/wrappers/freeimage.go' GEN 2d/wrappers/ftgl.go 2d/wrappers/ftgl.scm:62:6: warning: "<ftgl-font ~x>": unsupported format option ~x, use (ice-9 format) instead 2d/wrappers/ftgl.scm:100:6: warning: "<ftgl-simple-layout ~x>": unsupported format option ~x, use (ice-9 format) instead wrote `2d/wrappers/ftgl.go' GEN 2d/wrappers/gl.go wrote `2d/wrappers/gl.go' adding the modules to the module definition of each file fixes it
* Add a few more wrappers for FTGL layout functions.David Thompson2013-08-181-3/+19
|
* Add wrappers for FTGL simple layout objects.David Thompson2013-08-181-0/+80
|
* Create initial bindings for ftgl.David Thompson2013-08-171-0/+89