we definately need pixmaps for the drawing, currently drawing into the window is painfully slow! much more slower than drawing into a pixmap and mapping that when finished -- several optimisations

This commit is contained in:
Anselm R Garbe
2009-07-10 16:23:11 +01:00
parent 30024d585b
commit 4d3b1f94c7
2 changed files with 85 additions and 97 deletions

View File

@ -6,7 +6,7 @@
#define LINESPACE 1 /* additional pixel between each line */
/* Terminal colors */
static char* colorname[] = {
static const char *colorname[] = {
"black",
"red",
"green",
@ -26,14 +26,14 @@ static char* colorname[] = {
/* special keys */
static Key key[] = {
{ XK_Delete, "\033[3~" },
{ XK_Home, "\033[1~" },
{ XK_End, "\033[4~" },
{ XK_Prior, "\033[5~" },
{ XK_Next, "\033[6~" },
{ XK_Left, "\033[D" },
{ XK_Right, "\033[C" },
{ XK_Up, "\033[A" },
{ XK_Down, "\033[B" },
static const char *key[] = {
[XK_Delete] = "\033[3~",
[XK_Home] = "\033[1~",
[XK_End] = "\033[4~",
[XK_Prior] = "\033[5~",
[XK_Next] = "\033[6~",
[XK_Left] = "\033[D",
[XK_Right] = "\033[C",
[XK_Up] = "\033[A",
[XK_Down] = "\033[B",
};