equal
deleted
inserted
replaced
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 } |