os/graphics/graphicsdeviceinterface/directgdiadaptation/swsrc/swdirectgdiimagesourceimpl.h
Update contrib.
1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #ifndef SWDIRECTGDIIMAGESOURCEIMPL_H_
17 #define SWDIRECTGDIIMAGESOURCEIMPL_H_
24 #include "directgdiimageref.h"
27 class CSwDirectGdiDriverImpl;
30 A concrete software implementation of an image source represented by an RSgImage.
32 NONSHARABLE_CLASS(CSwDirectGdiImageSourceImpl) : public CDirectGdiImageRef
35 static TInt New(CSwDirectGdiImageSourceImpl*& aImage, CSwDirectGdiDriverImpl& aDriver, const RSgImage& aSgImage);
36 virtual ~CSwDirectGdiImageSourceImpl();
37 inline TInt Stride() const { return iStride; }
38 inline TAny* DataBuffer() const { return iDataBuffer; }
41 CSwDirectGdiImageSourceImpl(CSwDirectGdiDriverImpl& aDriver);
42 TInt Construct(const RSgImage& aSgImage);
45 CSwDirectGdiDriverImpl& iDriver;
50 #endif /*SWDIRECTGDIIMAGESOURCEIMPL_H_*/