re-enable alphablend
[enigma2.git] / lib / gdi / grc.h
index 57d3dce4098e71006eca2ad5e67dbd2e7edbbb14..478ca46c54ae2448f99b93d9471079b3a6263319 100644 (file)
@@ -23,7 +23,6 @@
 #include <lib/gdi/region.h>
 #include <lib/gdi/gfont.h>
 
-#ifndef SWIG
 class eTextPara;
 
 class gDC;
@@ -231,7 +230,8 @@ public:
 
        enum
        {
-               BT_ALPHATEST = 1
+               BT_ALPHATEST = 1,
+               BT_ALPHABLEND = 2
        };
 
        void blit(gPixmap *pixmap, ePoint pos, const eRect &what=eRect(), int flags=0);
@@ -250,18 +250,14 @@ public:
        void clip(const gRegion &clip);
        void clippop();
 
-       void flush();
-       
        void waitVSync();
        void flip();
        void notify();
 };
-#endif
 
 class gDC: public iObject
 {
 DECLARE_REF(gDC);
-#ifndef SWIG
 protected:
        ePtr<gPixmap> m_pixmap;
 
@@ -279,9 +275,6 @@ protected:
        int m_spinner_num, m_spinner_i;
 public:
        virtual void exec(gOpcode *opcode);
-#else
-public:
-#endif
        gDC(gPixmap *pixmap);
        gDC();
        virtual ~gDC();