~ubuntu-branches/ubuntu/intrepid/blender/intrepid-updates

« back to all changes in this revision

Viewing changes to extern/bFTGL/README.txt

  • Committer: Bazaar Package Importer
  • Author(s): Cyril Brulebois
  • Date: 2008-08-08 02:45:40 UTC
  • mfrom: (12.1.14 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080808024540-kkjp7ekfivzhuw3l
Tags: 2.46+dfsg-4
* Fix python syntax warning in import_dxf.py, which led to nasty output
  in installation/upgrade logs during byte-compilation, using a patch
  provided by the script author (Closes: #492280):
   - debian/patches/45_fix_python_syntax_warning

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
FTGL 2.0.11
2
 
16 August 2004
3
 
 
4
 
DESCRIPTION:
5
 
 
6
 
FTGL is a free open source library to enable developers to use arbitrary
7
 
fonts in their OpenGL (www.opengl.org)  applications.
8
 
Unlike other OpenGL font libraries FTGL uses standard font file formats
9
 
so doesn't need a preprocessing step to convert the high quality font data
10
 
into a lesser quality, proprietary format.
11
 
FTGL uses the Freetype (www.freetype.org) font library to open and 'decode'
12
 
the fonts. It then takes that output and stores it in a format most efficient
13
 
for OpenGL rendering.
14
 
 
15
 
Rendering modes supported are
16
 
- Bit maps
17
 
- Antialiased Pix maps
18
 
- Texture maps
19
 
- Outlines
20
 
- Polygon meshes
21
 
- Extruded polygon meshes
22
 
 
23
 
FTGL is designed to be used in commercial quality software. It has been
24
 
written with performance, robustness and simplicity in mind.
25
 
 
26
 
USAGE:
27
 
 
28
 
        FTGLPixmapFont font( "Fonts:Arial");
29
 
 
30
 
        font.FaceSize( 72);
31
 
        
32
 
        font.render( "Hello World!");
33
 
 
34
 
This library was inspired by gltt, Copyright (C) 1998-1999 Stephane Rehel
35
 
(http://gltt.sourceforge.net)
36
 
Bezier curve code contributed by Jed Soane.
37
 
Demo, Linux port, extrusion code and gltt maintainance by Gerard Lanois
38
 
Linux port by Matthias Kretz
39
 
Windows port by Andrew Ellerton & Max Rheiner
40
 
Bug fixes by Robert Osfield, Marcelo E. Magallon, Markku Rontu, Mark A. Fox,
41
 
Patrick Rogers
42
 
Containers and optimisations by Sebastien Barre
43
 
Autoconf Marcelo E. Magallon.
44
 
 
45
 
 
46
 
Please contact me if you have any suggestions, feature requests, or problems.
47
 
 
48
 
Henry Maddocks
49
 
ftgl@opengl.geek.nz
50
 
http://homepages.paradise.net.nz/henryj/
51