- Timestamp:
- 04/06/07 00:00:32 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/mixin-collappse/Source/System/Image/WS/OSGImageBase.cpp
r658 r660 2000 2000 #endif 2001 2001 2002 void ImageBase::resolveLinks(UInt32 uiCurrentAspect, 2003 AspectOffsetStore &oOffsets) 2004 { 2005 Inherited::resolveLinks(uiCurrentAspect, oOffsets); 2002 void ImageBase::resolveLinks(void) 2003 { 2004 Inherited::resolveLinks(); 2005 2006 #ifdef OSG_MT_CPTR_ASPECT 2007 AspectOffsetStore oOffsets; 2008 2009 _pAspectStore->fillOffsetArray(oOffsets, this); 2010 #endif 2011 2006 2012 2007 2013 static_cast<Image *>(this)->clearParents(); 2008 2014 2009 _mfPixel.terminateShare(uiCurrentAspect, oOffsets); 2015 #ifdef OSG_MT_CPTR_ASPECT 2016 _mfPixel.terminateShare(Thread::getCurrentAspect(), 2017 oOffsets); 2018 #endif 2010 2019 } 2011 2020
