Changeset 1178 for trunk/Source/System/Material/Base/OSGChunkMaterialBase.h
- Timestamp:
- 04/18/08 04:10:31 (7 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Source/System/Material/Base/OSGChunkMaterialBase.h
r1116 r1178 223 223 224 224 225 StateChunkPtr ConstgetChunks (const UInt32 index) const;225 StateChunkPtr getChunks (const UInt32 index) const; 226 226 const MFUnrecStateChunkPtr &getChunks (void) const; 227 227 … … 246 246 /*! \{ */ 247 247 248 void pushToChunks ( StateChunkPtrConstArgvalue );248 void pushToChunks (const StateChunkPtr value ); 249 249 void assignChunks (const MFUnrecStateChunkPtr &value); 250 void insertIntoChunks ( UInt32uiIndex,251 StateChunkPtrConstArgvalue );252 void replaceInChunks ( UInt32uiIndex,253 StateChunkPtrConstArgvalue );254 void replaceInChunks ( StateChunkPtrConstArgpOldElem,255 StateChunkPtrConstArgpNewElem);250 void insertIntoChunks ( UInt32 uiIndex, 251 const StateChunkPtr value ); 252 void replaceInChunks ( UInt32 uiIndex, 253 const StateChunkPtr value ); 254 void replaceInChunks (const StateChunkPtr pOldElem, 255 const StateChunkPtr pNewElem); 256 256 void removeFromChunks (UInt32 uiIndex ); 257 void removeFromChunks( StateChunkPtrConstArgvalue );257 void removeFromChunks(const StateChunkPtr value ); 258 258 void clearChunks (void ); 259 259
