diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2005-01-29 05:22:00 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2005-01-29 05:22:00 +0000 |
| commit | 6b7b7977a92c9a092763bf699cba85347f9f2ec6 (patch) | |
| tree | 473fbea9df91c570db54ec8e65d968e72c18a492 /lib/gdi | |
| parent | 2590d97005eecab111a4bf8476da9eb1c700654c (diff) | |
| download | enigma2-6b7b7977a92c9a092763bf699cba85347f9f2ec6.tar.gz enigma2-6b7b7977a92c9a092763bf699cba85347f9f2ec6.zip | |
- add fake "main menu"
- enable grc threading
- disable some debug
- dialog stacks
Diffstat (limited to 'lib/gdi')
| -rw-r--r-- | lib/gdi/font.cpp | 10 | ||||
| -rw-r--r-- | lib/gdi/grc.cpp | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/lib/gdi/font.cpp b/lib/gdi/font.cpp index f7c62209..187512d5 100644 --- a/lib/gdi/font.cpp +++ b/lib/gdi/font.cpp @@ -60,12 +60,12 @@ static gLookup &getColor(const gPalette &pal, const gRGB &start, const gRGB &end if (i != colorcache.end()) return i->second; gLookup &n=colorcache.insert(std::pair<fntColorCacheKey,gLookup>(key,gLookup())).first->second; - eDebug("[FONT] creating new font color cache entry %02x%02x%02x%02x .. %02x%02x%02x%02x", start.a, start.r, start.g, start.b, - end.a, end.r, end.g, end.b); +// eDebug("[FONT] creating new font color cache entry %02x%02x%02x%02x .. %02x%02x%02x%02x", start.a, start.r, start.g, start.b, +// end.a, end.r, end.g, end.b); n.build(16, pal, start, end); - for (int i=0; i<16; i++) - eDebugNoNewLine("%02x|%02x%02x%02x%02x ", (int)n.lookup[i], pal.data[n.lookup[i]].a, pal.data[n.lookup[i]].r, pal.data[n.lookup[i]].g, pal.data[n.lookup[i]].b); - eDebug(""); +// for (int i=0; i<16; i++) +// eDebugNoNewLine("%02x|%02x%02x%02x%02x ", (int)n.lookup[i], pal.data[n.lookup[i]].a, pal.data[n.lookup[i]].r, pal.data[n.lookup[i]].g, pal.data[n.lookup[i]].b); +// eDebug(""); return n; } diff --git a/lib/gdi/grc.cpp b/lib/gdi/grc.cpp index 137e92dc..a63aef92 100644 --- a/lib/gdi/grc.cpp +++ b/lib/gdi/grc.cpp @@ -1,5 +1,5 @@ // for debugging use: - #define SYNC_PAINT +// #define SYNC_PAINT #include <unistd.h> #ifndef SYNC_PAINT #include <pthread.h> |
