os/graphics/graphicsresourceservices/graphicsresourceinterface/inc/sgresource.inl
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2007-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 - general inline functions
sl@0
    15
//
sl@0
    16
sl@0
    17
#ifndef SGRESOURCE_INL
sl@0
    18
#define SGRESOURCE_INL
sl@0
    19
sl@0
    20
_LIT(KSgResourcePanicCategory, "SGRES");
sl@0
    21
sl@0
    22
inline void Panic(TSgResourcePanicReason aReason)
sl@0
    23
	{
sl@0
    24
	User::Panic(KSgResourcePanicCategory, aReason);
sl@0
    25
	}
sl@0
    26
sl@0
    27
inline TSgAttribute::TSgAttribute()
sl@0
    28
	{
sl@0
    29
	}
sl@0
    30
sl@0
    31
inline TSgAttribute::TSgAttribute(TUid aUid, TInt aValue)
sl@0
    32
	: iUid(aUid), iValue(aValue)
sl@0
    33
	{
sl@0
    34
	}
sl@0
    35
sl@0
    36
inline TSgAttributeArrayBase::TSgAttributeArrayBase(TInt aCount)
sl@0
    37
	: iCount(aCount)
sl@0
    38
	{
sl@0
    39
	}
sl@0
    40
sl@0
    41
inline void TSgAttributeArrayBase::operator =(const TSgAttributeArrayBase&)
sl@0
    42
	{
sl@0
    43
	}
sl@0
    44
sl@0
    45
inline TInt TSgAttributeArrayBase::Count() const
sl@0
    46
	{
sl@0
    47
	return iCount;
sl@0
    48
	}
sl@0
    49
sl@0
    50
inline TSgAttribute& TSgAttributeArrayBase::operator [](TInt aIndex)
sl@0
    51
	{
sl@0
    52
	__ASSERT_ALWAYS(aIndex >= 0 && aIndex < iCount, Panic(ESgPanicBadAttributeArrayIndex));
sl@0
    53
	return reinterpret_cast<TSgAttribute*>(this + 1)[aIndex];
sl@0
    54
	}
sl@0
    55
sl@0
    56
inline const TSgAttribute& TSgAttributeArrayBase::operator [](TInt aIndex) const
sl@0
    57
	{
sl@0
    58
	__ASSERT_ALWAYS(aIndex >= 0 && aIndex < iCount, Panic(ESgPanicBadAttributeArrayIndex));
sl@0
    59
	return reinterpret_cast<const TSgAttribute*>(this + 1)[aIndex];
sl@0
    60
	}
sl@0
    61
sl@0
    62
template<TInt S>
sl@0
    63
inline TSgAttributeArray<S>::TSgAttributeArray()
sl@0
    64
	: TSgAttributeArrayBase(S)
sl@0
    65
	{
sl@0
    66
	}
sl@0
    67
sl@0
    68
inline TBool TSgDrawableId::operator ==(TSgDrawableId aId) const
sl@0
    69
	{
sl@0
    70
	return iId == aId.iId;
sl@0
    71
	}
sl@0
    72
sl@0
    73
inline TBool TSgDrawableId::operator !=(TSgDrawableId aId) const
sl@0
    74
	{
sl@0
    75
	return iId != aId.iId;
sl@0
    76
	}
sl@0
    77
sl@0
    78
inline RSgDriver::RSgDriver()
sl@0
    79
	: iImpl(NULL)
sl@0
    80
	{
sl@0
    81
	}
sl@0
    82
sl@0
    83
template<class M>
sl@0
    84
inline TInt RSgDriver::GetInterface(M*& aInterfacePtr) const
sl@0
    85
	{
sl@0
    86
	return GetInterface(TUid::Uid(M::EInterfaceUid), (TAny*&)aInterfacePtr);
sl@0
    87
	}
sl@0
    88
sl@0
    89
inline RSgDrawable::RSgDrawable()
sl@0
    90
	: iHandleType(KSgDrawableTypeUid), iImpl(NULL)
sl@0
    91
	{
sl@0
    92
	}
sl@0
    93
sl@0
    94
inline RSgDrawable::RSgDrawable(TUid aHandleType)
sl@0
    95
	: iHandleType(aHandleType), iImpl(NULL)
sl@0
    96
	{
sl@0
    97
	}
sl@0
    98
sl@0
    99
inline TBool RSgDrawable::IsNull() const
sl@0
   100
	{
sl@0
   101
	return !iImpl;
sl@0
   102
	}
sl@0
   103
sl@0
   104
template<class M>
sl@0
   105
inline TInt RSgDrawable::GetInterface(M*& aInterfacePtr) const
sl@0
   106
	{
sl@0
   107
	return GetInterface(TUid::Uid(M::EInterfaceUid), (TAny*&)aInterfacePtr);
sl@0
   108
	}
sl@0
   109
sl@0
   110
#endif // SGRESOURCE_INL