sl@0
|
1 |
// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
/**
|
sl@0
|
17 |
@file
|
sl@0
|
18 |
@internalComponent
|
sl@0
|
19 |
*/
|
sl@0
|
20 |
|
sl@0
|
21 |
#ifndef SGIMAGEIMPL_INL
|
sl@0
|
22 |
#define SGIMAGEIMPL_INL
|
sl@0
|
23 |
|
sl@0
|
24 |
|
sl@0
|
25 |
// XSgImageImplBase
|
sl@0
|
26 |
|
sl@0
|
27 |
inline XSgImageImplBase::XSgImageImplBase(XSgDriverImpl& aDriverImpl)
|
sl@0
|
28 |
: XSgBase(aDriverImpl)
|
sl@0
|
29 |
{}
|
sl@0
|
30 |
|
sl@0
|
31 |
|
sl@0
|
32 |
inline XSgImageImplBase::XSgImageImplBase(XSgDriverImpl& aDriverImpl, const TSgDrawableId& aId)
|
sl@0
|
33 |
: XSgBase(aDriverImpl), iId(aId)
|
sl@0
|
34 |
{}
|
sl@0
|
35 |
|
sl@0
|
36 |
|
sl@0
|
37 |
inline const TSgImageMetaData& XSgImageImplBase::MetaData() const
|
sl@0
|
38 |
{
|
sl@0
|
39 |
return iState->MetaData();
|
sl@0
|
40 |
}
|
sl@0
|
41 |
|
sl@0
|
42 |
|
sl@0
|
43 |
// XSgImageStateBase
|
sl@0
|
44 |
|
sl@0
|
45 |
inline XSgImageStateBase::XSgImageStateBase(XSgDriverImpl& aDriverImpl)
|
sl@0
|
46 |
: XSgBase(aDriverImpl)
|
sl@0
|
47 |
{}
|
sl@0
|
48 |
|
sl@0
|
49 |
|
sl@0
|
50 |
inline XSgImageStateBase::XSgImageStateBase(XSgDriverImpl& aDriverImpl, TInt aDataStride)
|
sl@0
|
51 |
: XSgBase(aDriverImpl), iDataStride(aDataStride)
|
sl@0
|
52 |
{}
|
sl@0
|
53 |
|
sl@0
|
54 |
|
sl@0
|
55 |
inline TInt XSgImageStateBase::DataStride() const
|
sl@0
|
56 |
{
|
sl@0
|
57 |
return iDataStride;
|
sl@0
|
58 |
}
|
sl@0
|
59 |
|
sl@0
|
60 |
|
sl@0
|
61 |
#ifndef SYMBIAN_GRAPHICS_USE_GPU
|
sl@0
|
62 |
|
sl@0
|
63 |
// TSgImageId_SwLocal
|
sl@0
|
64 |
|
sl@0
|
65 |
inline TBool TSgImageId_SwLocal::IsMatch(const TSgDrawableId& aId)
|
sl@0
|
66 |
{
|
sl@0
|
67 |
return reinterpret_cast<const TSgImageId_SwLocal&>(aId).iMinusOne == KErrNotFound;
|
sl@0
|
68 |
}
|
sl@0
|
69 |
|
sl@0
|
70 |
|
sl@0
|
71 |
// XSgImageImpl_SwLocal
|
sl@0
|
72 |
|
sl@0
|
73 |
inline XSgImageImpl_SwLocal::XSgImageImpl_SwLocal(XSgDriverImpl& aDriverImpl, const TSgDrawableId& aId)
|
sl@0
|
74 |
: XSgImageImplBase(aDriverImpl, aId)
|
sl@0
|
75 |
{}
|
sl@0
|
76 |
|
sl@0
|
77 |
|
sl@0
|
78 |
inline XSgImageImpl_SwLocal::XSgImageImpl_SwLocal(const XSgImageImpl_SwLocal& aImage, TUint32 aFlags)
|
sl@0
|
79 |
: XSgImageImplBase(aImage, aFlags)
|
sl@0
|
80 |
{}
|
sl@0
|
81 |
|
sl@0
|
82 |
#endif
|
sl@0
|
83 |
|
sl@0
|
84 |
|
sl@0
|
85 |
// TSgImageId_SurfaceManager
|
sl@0
|
86 |
|
sl@0
|
87 |
inline TBool TSgImageId_SurfaceManager::IsMatch(const TSgDrawableId& aId)
|
sl@0
|
88 |
{
|
sl@0
|
89 |
return reinterpret_cast<const TSgImageId_SurfaceManager&>(aId).iBufferIndex >= 0
|
sl@0
|
90 |
&& reinterpret_cast<const TSgImageId_SurfaceManager&>(aId).iMetaDataIndex >= 0;
|
sl@0
|
91 |
}
|
sl@0
|
92 |
|
sl@0
|
93 |
|
sl@0
|
94 |
// XSgImageImpl_SurfaceManager
|
sl@0
|
95 |
|
sl@0
|
96 |
inline XSgImageImpl_SurfaceManager::XSgImageImpl_SurfaceManager(XSgDriverImpl& aDriverImpl)
|
sl@0
|
97 |
: XSgImageImplBase(aDriverImpl)
|
sl@0
|
98 |
{}
|
sl@0
|
99 |
|
sl@0
|
100 |
|
sl@0
|
101 |
inline XSgImageImpl_SurfaceManager::XSgImageImpl_SurfaceManager(XSgDriverImpl& aDriverImpl, const TSgDrawableId& aId)
|
sl@0
|
102 |
: XSgImageImplBase(aDriverImpl, aId)
|
sl@0
|
103 |
{}
|
sl@0
|
104 |
|
sl@0
|
105 |
|
sl@0
|
106 |
inline XSgImageImpl_SurfaceManager::XSgImageImpl_SurfaceManager(const XSgImageImpl_SurfaceManager& aImage, TUint32 aFlags)
|
sl@0
|
107 |
: XSgImageImplBase(aImage, aFlags)
|
sl@0
|
108 |
{}
|
sl@0
|
109 |
|
sl@0
|
110 |
|
sl@0
|
111 |
// XSgImageState_SurfaceManager
|
sl@0
|
112 |
|
sl@0
|
113 |
inline XSgImageState_SurfaceManager::XSgImageState_SurfaceManager(XSgDriverImpl& aDriverImpl)
|
sl@0
|
114 |
: XSgImageStateBase(aDriverImpl)
|
sl@0
|
115 |
{}
|
sl@0
|
116 |
|
sl@0
|
117 |
|
sl@0
|
118 |
inline const TSurfaceId& XSgImageState_SurfaceManager::SurfaceId() const
|
sl@0
|
119 |
{
|
sl@0
|
120 |
return iSurfaceId;
|
sl@0
|
121 |
}
|
sl@0
|
122 |
|
sl@0
|
123 |
|
sl@0
|
124 |
inline const RChunk& XSgImageState_SurfaceManager::DataChunk() const
|
sl@0
|
125 |
{
|
sl@0
|
126 |
return iDataChunk;
|
sl@0
|
127 |
}
|
sl@0
|
128 |
|
sl@0
|
129 |
|
sl@0
|
130 |
inline TInt XSgImageState_SurfaceManager::DataOffset() const
|
sl@0
|
131 |
{
|
sl@0
|
132 |
return iDataOffset;
|
sl@0
|
133 |
}
|
sl@0
|
134 |
|
sl@0
|
135 |
|
sl@0
|
136 |
#endif // SGIMAGEIMPL_INL
|