translations
[enigma2.git] / lib / gdi / gpixmap.h
index d598fdbd3786a9f78661f5a6917cad88d6ffec66..8ea125741cc6e9b93d301ae242f83057774a0028 100644 (file)
@@ -88,13 +88,12 @@ struct gSurface
        gPalette clut;
        
        void *data;
-       virtual ~gSurface();
-};
+       int data_phys;
+       int offset; // only for backbuffers
 
-struct gSurfaceSystem: gSurface
-{
-       gSurfaceSystem(eSize size, int bpp);
-       ~gSurfaceSystem();
+       gSurface();
+       gSurface(eSize size, int bpp, int accel);
+       ~gSurface();
 };
 
 class gPixmap: public iObject
@@ -105,15 +104,17 @@ private:
        friend class gDC;
        void fill(const gRegion &clip, const gColor &color);
        
-       enum
-       {
-               blitAlphaTest=1
-       };
        void blit(const gPixmap &src, ePoint pos, const gRegion &clip, int flags=0);
        
        void mergePalette(const gPixmap &target);
        void line(const gRegion &clip, ePoint start, ePoint end, gColor color);
 public:
+       enum
+       {
+               blitAlphaTest=1,
+               blitAlphaBlend=2
+       };
+
        gSurface *surface;
        
        eLock contentlock;
@@ -125,7 +126,7 @@ public:
        eSize size() const { return eSize(surface->x, surface->y); }
        
        gPixmap(gSurface *surface);
-       gPixmap(eSize, int bpp);
+       gPixmap(eSize, int bpp, int accel = 0);
        virtual ~gPixmap();
 };