| 144 | | #ifdef OSG_MT_FIELDCONTAINERPTR |
|---|
| 145 | | inline |
|---|
| 146 | | void ImageComposerBase::execSync( ImageComposerBase *pOther, |
|---|
| 147 | | ConstFieldMaskArg whichField, |
|---|
| 148 | | ConstFieldMaskArg syncMode, |
|---|
| 149 | | const UInt32 uiSyncInfo, |
|---|
| 150 | | UInt32 uiCopyOffset) |
|---|
| 151 | | { |
|---|
| 152 | | Inherited::execSync(pOther, whichField, syncMode, uiSyncInfo, uiCopyOffset); |
|---|
| 153 | | |
|---|
| 154 | | if(FieldBits::NoField != (EnabledFieldMask & whichField)) |
|---|
| 155 | | _sfEnabled.syncWith(pOther->_sfEnabled); |
|---|
| 156 | | |
|---|
| 157 | | if(FieldBits::NoField != (StatisticsFieldMask & whichField)) |
|---|
| 158 | | _sfStatistics.syncWith(pOther->_sfStatistics); |
|---|
| 159 | | } |
|---|
| 160 | | #endif |
|---|
| 161 | | |
|---|