guestrendering/vghwserialiser/inc/eglrfc.inl
branchbug235_bringup_0
changeset 22 b801ed730c0a
parent 1 d8d95053303a
equal deleted inserted replaced
21:f912a08d3c3a 22:b801ed730c0a
    16     {
    16     {
    17     // note that 64-bit values consume 2 param slots!
    17     // note that 64-bit values consume 2 param slots!
    18     TUint32 lower, upper;
    18     TUint32 lower, upper;
    19     iData.GetParamValue( EglRFC::EEGLint, (TUint8*)&lower, aIndex );
    19     iData.GetParamValue( EglRFC::EEGLint, (TUint8*)&lower, aIndex );
    20     iData.GetParamValue( EglRFC::EEGLint, (TUint8*)&upper, aIndex+1 );
    20     iData.GetParamValue( EglRFC::EEGLint, (TUint8*)&upper, aIndex+1 );
    21     aParam = (upper << 32) + lower;
    21     aParam = ((TUint64)upper << 32) + lower;
    22     }
    22     }
    23 inline void EglRFC::GetEGLBoolean( EGLBoolean& aParam, TInt aIndex )
    23 inline void EglRFC::GetEGLBoolean( EGLBoolean& aParam, TInt aIndex )
    24 	{
    24 	{
    25 	iData.GetParamValue( EglRFC::EEGLBoolean, (TUint8*)&aParam, aIndex );
    25 	iData.GetParamValue( EglRFC::EEGLBoolean, (TUint8*)&aParam, aIndex );
    26 	}
    26 	}