os/graphics/graphicsresourceservices/graphicsresourceadaptation/src/sgimagecollectionimpl.cpp
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 #include "sgimagecollectionimpl.h"
17 #include "sgimageimpl.h"
20 TInt XSgImageCollectionImpl::New(XSgImageCollectionImpl*& aPtr, XSgDriverImpl& aDriverImpl,
21 const TSgImageInfo& aInfo, TInt aImageCount, TBool aIsCached,
22 TInt aStride, TInt aOffsetToFirstBuffer, TInt aOffsetBetweenBuffers,
23 TInt aMetaDataIndex, const XSgImageCollectionImpl* aCollection)
25 aPtr = static_cast<XSgImageCollectionImpl*>(aDriverImpl.Alloc(sizeof(XSgImageCollectionImpl)));
30 new(aPtr) XSgImageCollectionImpl(aDriverImpl);
31 TInt err = aPtr->Construct(aInfo, aImageCount, aIsCached, aStride, aOffsetToFirstBuffer, aOffsetBetweenBuffers, aMetaDataIndex, aCollection);
41 TInt XSgImageCollectionImpl::Construct(const TSgImageInfo& aInfo, TInt aImageCount, TBool aIsCached,
42 TInt aStride, TInt aOffsetToFirstBuffer, TInt aOffsetBetweenBuffers,
43 TInt aMetaDataIndex, const XSgImageCollectionImpl* aCollection)
45 TInt maxNumberOfHints;
47 err=iDriverImpl.GetSurfaceManagerAttrib(RSurfaceManager::EMaxNumberOfHints,maxNumberOfHints);
53 if (aInfo.iUserAttributeCount > maxNumberOfHints)
57 RSurfaceManager::THintPair* hints = new RSurfaceManager::THintPair[aInfo.iUserAttributeCount];
63 RSurfaceManager::TSurfaceCreationAttributesBuf reqs;
64 reqs().iSize = aInfo.iSizeInPixels;
65 reqs().iBuffers = aImageCount;
66 reqs().iPixelFormat = aInfo.iPixelFormat;
67 reqs().iStride = aStride;
68 reqs().iOffsetToFirstBuffer = aOffsetToFirstBuffer;
69 reqs().iAlignment = 4;
70 reqs().iContiguous = EFalse;
71 reqs().iCacheAttrib = aIsCached ? RSurfaceManager::ECached : RSurfaceManager::ENotCached;
72 reqs().iMappable = ETrue;
73 reqs().iOffsetBetweenBuffers = aOffsetBetweenBuffers;
74 reqs().iSurfaceHints = hints;
75 reqs().iHintCount = aInfo.iUserAttributeCount;
76 for (TInt i = 0; i < aInfo.iUserAttributeCount; ++i)
78 reqs().iSurfaceHints[i].iKey = aInfo.iUserAttributes[i].iUid;
79 reqs().iSurfaceHints[i].iValue = aInfo.iUserAttributes[i].iValue;
80 reqs().iSurfaceHints[i].iMutable = EFalse;
85 err = iDriverImpl.CreateSurface(reqs, surfaceId);
89 err = iDriverImpl.CreateSurface(reqs, surfaceId, aCollection->iDataChunk);
93 reqs().iSurfaceHints = NULL;
98 iSurfaceId = surfaceId;
103 err = iDriverImpl.MapSurface(surfaceId, chunk);
107 chunk = aCollection->iDataChunk;
108 err = chunk.Duplicate(RThread()); // Get a process-wide handle
115 iMetaDataIndex = aMetaDataIndex;
116 new(chunk.Base() + aMetaDataIndex * sizeof(TSgImageMetaData)) TSgImageMetaData(aInfo, iDriverImpl.PixelFormatTable(), aIsCached);
121 XSgImageCollectionImpl::~XSgImageCollectionImpl()
123 if (!iSurfaceId.IsNull())
125 iDriverImpl.CloseSurface(iSurfaceId);
131 void XSgImageCollectionImpl::Close()
133 XSgDriverImpl& driverImpl = iDriverImpl;
135 if (DecRefCount() == 0)
137 driverImpl.DeleteImageCollection(this);
143 const TSurfaceId& XSgImageCollectionImpl::SurfaceId() const
149 TInt XSgImageCollectionImpl::GetInfo(TSgImageInfo& aInfo) const
151 reinterpret_cast<TSgImageMetaData*>(iDataChunk.Base() + iMetaDataIndex * sizeof(TSgImageMetaData))->GetInfo(aInfo);
152 for (TInt i = 0; i < aInfo.iUserAttributeCount; ++i)
154 RSurfaceManager::THintPair hint;
155 hint.iKey = aInfo.iUserAttributes[i].iUid;
156 TInt err = iDriverImpl.GetSurfaceHint(iSurfaceId, hint);
161 aInfo.iUserAttributes[i].iValue = hint.iValue;
167 TInt XSgImageCollectionImpl::Count() const
173 TInt XSgImageCollectionImpl::OpenImage(TInt aIndex, MSgDrawableAdapter*& aResult)
175 if (aIndex < 0 || aIndex >= iCount)
182 TSgImageId_SurfaceManager id_SurfaceManager;
184 id_SurfaceManager.iSurfaceId = iSurfaceId;
185 id_SurfaceManager.iBufferIndex = aIndex;
186 id_SurfaceManager.iMetaDataIndex = iMetaDataIndex;
187 id_SurfaceManager.iFlags = 0;
189 TInt err = iDriverImpl.OpenImage(id, KSgDefaultOpenMode, aResult);
190 iDriverImpl.Signal();