sl@0
|
1 |
// Copyright (c) 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 |
// Graphics Resource - logical device driver internal functionality
|
sl@0
|
15 |
//
|
sl@0
|
16 |
|
sl@0
|
17 |
#ifndef SGDEVICEIMPL_H
|
sl@0
|
18 |
#define SGDEVICEIMPL_H
|
sl@0
|
19 |
|
sl@0
|
20 |
#include <kernel/kernel.h>
|
sl@0
|
21 |
#include <sgresource/sgdevice.h>
|
sl@0
|
22 |
|
sl@0
|
23 |
enum TSgDevicePanicReason
|
sl@0
|
24 |
{
|
sl@0
|
25 |
ESgPanicMetaDataSizeTooBig = 1,
|
sl@0
|
26 |
ESgPanicDataSizeNegative = 2
|
sl@0
|
27 |
};
|
sl@0
|
28 |
|
sl@0
|
29 |
void Panic(TSgDevicePanicReason aReason);
|
sl@0
|
30 |
|
sl@0
|
31 |
class DSgDevice: public DLogicalDevice
|
sl@0
|
32 |
{
|
sl@0
|
33 |
public:
|
sl@0
|
34 |
// From DLogicalDevice
|
sl@0
|
35 |
TInt Install();
|
sl@0
|
36 |
void GetCaps(TDes8& aDes) const;
|
sl@0
|
37 |
TInt Create(DLogicalChannelBase*& aChannel);
|
sl@0
|
38 |
};
|
sl@0
|
39 |
|
sl@0
|
40 |
class DSgResource;
|
sl@0
|
41 |
|
sl@0
|
42 |
class DSgChannel: public DLogicalChannelBase
|
sl@0
|
43 |
{
|
sl@0
|
44 |
public:
|
sl@0
|
45 |
~DSgChannel();
|
sl@0
|
46 |
// From DLogicalChannelBase
|
sl@0
|
47 |
TInt DoCreate(TInt aUnit, const TDesC8* aInfo, const TVersion& aVersion);
|
sl@0
|
48 |
TInt Request(TInt aFunction, TAny* a1, TAny* a2);
|
sl@0
|
49 |
private:
|
sl@0
|
50 |
TInt CreateResource(TUint32 aAttribs, const TDesC8& aMetaData, TInt aDataSize, TUint64& aId);
|
sl@0
|
51 |
TInt OpenResource(TUint64 aId);
|
sl@0
|
52 |
TInt CloseResource(TUint64 aId);
|
sl@0
|
53 |
TUint32 ResourceAttributes(TUint64 aId) const;
|
sl@0
|
54 |
TInt GetResourceMetaData(TUint64 aId, TDes8& aMetaData) const;
|
sl@0
|
55 |
TAny* ResourceDataAddress(TUint64 aId) const;
|
sl@0
|
56 |
TInt ResourceDataSize(TUint64 aId) const;
|
sl@0
|
57 |
TInt GlobalResourceCount() const;
|
sl@0
|
58 |
TInt LocalGraphicsMemoryUsed() const;
|
sl@0
|
59 |
TInt GlobalGraphicsMemoryUsed() const;
|
sl@0
|
60 |
private:
|
sl@0
|
61 |
class TResourceListItem
|
sl@0
|
62 |
{
|
sl@0
|
63 |
public:
|
sl@0
|
64 |
TResourceListItem(DSgResource* aResource, TInt aChunkHandle);
|
sl@0
|
65 |
public:
|
sl@0
|
66 |
DSgResource* iResource;
|
sl@0
|
67 |
TInt iChunkHandle;
|
sl@0
|
68 |
};
|
sl@0
|
69 |
private:
|
sl@0
|
70 |
static TInt Compare(const TUint64* aId, const TResourceListItem& aResourceListItem);
|
sl@0
|
71 |
static TInt Compare(const TResourceListItem& aResourceListItem1, const TResourceListItem& aResourceListItem2);
|
sl@0
|
72 |
private:
|
sl@0
|
73 |
DMutex* iMutex;
|
sl@0
|
74 |
RArray<TResourceListItem> iResources;
|
sl@0
|
75 |
};
|
sl@0
|
76 |
|
sl@0
|
77 |
#endif // SGDEVICEIMPL_H
|