Update TODO list with console subsystem

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
This commit is contained in:
David Herrmann 2011-11-20 18:02:28 +01:00
parent 8cd898bb58
commit 5af1381ea3

10
TODO
View File

@ -29,3 +29,13 @@ Output Subsystem:
additional list of available crtcs so users can choose them, too?
- Is glFinish() needed before setCrtc or is glFlush sufficient?
Console Subsystem:
- Do we need to offer a way to create mipmaps of the cairo image? This would
allow faster mappings of the console onto the framebuffers.
- We need to correctly handle Unicode characters. Every console cell contains
one single character, however, Unicode supports combining marks. Our
implementation supports them but we need to correctly map our keyboard input
to the correct cells. Pango depends on glib so we can probably use the glib
functions for UTF-8/Unicode handling.