double size of renderbuffer
[enigma2.git] / lib / gdi / grc.h
index 925b29d7a77a1622a86b11c99584e19f727d5331..fb9e2ea19db64542a1aabf6a6e819b64e74d4079 100644 (file)
@@ -7,6 +7,10 @@
        gPixmap aufsetzt (und damit unbeschleunigt ist).
 */
 
        gPixmap aufsetzt (und damit unbeschleunigt ist).
 */
 
+// for debugging use:
+//#define SYNC_PAINT
+#undef SYNC_PAINT
+
 #include <pthread.h>
 #include <stack>
 #include <list>
 #include <pthread.h>
 #include <stack>
 #include <list>
@@ -73,7 +77,7 @@ struct gOpcode
                struct prenderText
                {
                        eRect area;
                struct prenderText
                {
                        eRect area;
-                       std::string text;
+                       char *text;
                        int flags;
                } *renderText;
 
                        int flags;
                } *renderText;
 
@@ -134,7 +138,7 @@ struct gOpcode
        } parm;
 };
 
        } parm;
 };
 
-#define MAXSIZE 1024
+#define MAXSIZE 2048
 
                /* gRC is the singleton which controls the fifo and dispatches commands */
 class gRC: public iObject, public Object
 
                /* gRC is the singleton which controls the fifo and dispatches commands */
 class gRC: public iObject, public Object
@@ -181,7 +185,7 @@ class gPainter
 public:
        gPainter(gDC *dc, eRect rect=eRect());
        virtual ~gPainter();
 public:
        gPainter(gDC *dc, eRect rect=eRect());
        virtual ~gPainter();
-
+       
        void setBackgroundColor(const gColor &color);
        void setForegroundColor(const gColor &color);
 
        void setBackgroundColor(const gColor &color);
        void setForegroundColor(const gColor &color);
 
@@ -248,6 +252,7 @@ protected:
        ePtr<gPixmap> m_pixmap;
 
        gColor m_foreground_color, m_background_color;
        ePtr<gPixmap> m_pixmap;
 
        gColor m_foreground_color, m_background_color;
+       gRGB m_foreground_color_rgb, m_background_color_rgb;
        ePtr<gFont> m_current_font;
        ePoint m_current_offset;
        
        ePtr<gFont> m_current_font;
        ePoint m_current_offset;