comparison codeDoc/jobs.txt @ 48:a98ffb64f066

Implemented font rendering (grayscale only; i.e. non-LCD). FontTexture creates a texture and caches glyphs. Font supports multiple styles/faces, loaded from config file (should probably be loaded via Options instead). TextBlock cache for glyph placement within a string. committer: Diggory Hardy <diggory.hardy@gmail.com>
author Diggory Hardy <diggory.hardy@gmail.com>
date Sat, 31 May 2008 12:40:26 +0100
parents e0839643ff52
children bca7e2342d77
comparison
equal deleted inserted replaced
47:e0839643ff52 48:a98ffb64f066
1 Copyright © 2007-2008 Diggory Hardy 1 Copyright © 2007-2008 Diggory Hardy
2 License: GNU General Public License version 2 or later (see COPYING) 2 License: GNU General Public License version 2 or later (see COPYING)
3 3
4 4
5 In progress: 5 In progress:
6 Implementing font rendering
7 Reading ft tutorial
8 Use cartesian coordinates? Or not?
9 6
10 7
11 8
12 To do (importance 0-5: 0 pointless, 1 no obvious impact now, 2 todo sometime, 3 useful, 4 important, 5 urgent): 9 To do (importance 0-5: 0 pointless, 1 no obvious impact now, 2 todo sometime, 3 useful, 4 important, 5 urgent):
13 Also see todo.txt and FIXME/NOTE comment marks. 10 Also see todo.txt and FIXME/NOTE comment marks.
52 +/ 49 +/
53 1 Mergetag binary support 50 1 Mergetag binary support
54 51
55 52
56 Done (for git log message): 53 Done (for git log message):
54 Implemented font rendering (grayscale only; i.e. non-LCD).
55 FontTexture creates a texture and caches glyphs.
56 Font supports multiple styles/faces, loaded from config file (should probably be loaded via Options instead).
57 TextBlock cache for glyph placement within a string.