svgtopt/VGRenderer/inc/VGSurface.h
branchRCL_3
changeset 17 db5c883ad1c5
parent 0 d46562c3d99d
child 18 1902ade171ab
equal deleted inserted replaced
14:9be6eed35a80 17:db5c883ad1c5
    24 #include "MVGSurfaceImpl.h"
    24 #include "MVGSurfaceImpl.h"
    25 
    25 
    26 class RWindow;
    26 class RWindow;
    27 class CFbsBitmap;
    27 class CFbsBitmap;
    28 class CVGRenderer;
    28 class CVGRenderer;
       
    29 
       
    30 class CSvgtBitmap;
    29 
    31 
    30 /**
    32 /**
    31  *  CVGSurface
    33  *  CVGSurface
    32  * 
    34  * 
    33  */
    35  */
   119     TInt CopyBitmap(TInt aDisplayMode,TInt aMaskMode,CFbsBitmap *aBitmap, CFbsBitmap *aMask, TSize aSize)
   121     TInt CopyBitmap(TInt aDisplayMode,TInt aMaskMode,CFbsBitmap *aBitmap, CFbsBitmap *aMask, TSize aSize)
   120         {
   122         {
   121         return iImpl->CopyBitmap(aDisplayMode,aMaskMode, aBitmap, aMask, aSize);
   123         return iImpl->CopyBitmap(aDisplayMode,aMaskMode, aBitmap, aMask, aSize);
   122         }
   124         }
   123  
   125  
       
   126     TInt CopyBitmap(TInt aDisplayMode,TInt aMaskMode,CSvgtBitmap *aBitmap, CSvgtBitmap *aMask, TSize aSize)
       
   127         {
       
   128         return iImpl->CopyBitmap(aDisplayMode,aMaskMode, aBitmap, aMask, aSize);
       
   129         }
       
   130 
   124     /**
   131     /**
   125      * @fn          PrepareToBindClientBuffer
   132      * @fn          PrepareToBindClientBuffer
   126      *              Prepares the renderer to bind to an image. 
   133      *              Prepares the renderer to bind to an image. 
   127      *              This is added to allow some performance improvement the TLV renderer
   134      *              This is added to allow some performance improvement the TLV renderer
   128      *              This method should be called before creating the VGImage, which should be made as the surface.
   135      *              This method should be called before creating the VGImage, which should be made as the surface.