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