Update contrib.
1 // Copyright (c) 2008-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 __DRAWABLECACHE_H__
17 #define __DRAWABLECACHE_H__
20 #include <graphics/sgresource.h>
27 Provides functionality which is used by RemoteGc.
30 class RWsDrawableSource;
31 class MWsDrawableSourceProvider;
32 class CGraphicsResourceWrapperFactory;
33 class CGraphicsResourceWrapper;
38 NONSHARABLE_CLASS(CDrawableCacheBase): public CBase
41 virtual TInt UseL(const TSgDrawableId& aDrawableId, TInt aScreenNumber) = 0;
42 const TAny* Resolve(const TSgDrawableId& aDrawableId, TInt aScreenNumber) const;
47 TCacheEntry(const TSgDrawableId& aDrawableId, TInt aScreenNumber)
48 : iDrawableId(aDrawableId), iScreenNumber(aScreenNumber), iCachedItem(NULL)
51 TSgDrawableId iDrawableId;
56 static TInt Compare(const TCacheEntry &aFirstEntry, const TCacheEntry &aSecondEntry);
58 RArray<TCacheEntry> iCachedItems;
64 NONSHARABLE_CLASS(CWindowDrawableCache): public CDrawableCacheBase
67 CWindowDrawableCache(RWsSession& aSession);
68 ~CWindowDrawableCache();
69 TInt UseL(const TSgDrawableId& aDrawableId, TInt aScreenNumber);
71 RWsSession& iWsSession;
72 CGraphicsResourceWrapperFactory* iGrwFactory;
73 CGraphicsResourceWrapper* iGraphicsResource;
79 NONSHARABLE_CLASS(CRenderStageDrawableCache): public CDrawableCacheBase
82 CRenderStageDrawableCache(MWsDrawableSourceProvider* aDrawResource);
83 ~CRenderStageDrawableCache();
84 TInt UseL(const TSgDrawableId& aDrawableId, TInt aScreenNumber);
86 MWsDrawableSourceProvider* iDrawResource;
89 #endif //__DRAWABLECACHE_H__