- Timestamp:
- 10/24/07 19:30:30 (10 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/Carsten_PtrWork/Source/System/Depreciated/State/OSGTextureChunkBase.cpp
r979 r988 57 57 #include <cstdio> 58 58 #include <boost/assign/list_of.hpp> 59 #include <boost/bind.hpp> 59 60 60 61 #include <OSGConfig.h> … … 96 97 #include "OSGTextureChunk.h" 97 98 98 #include "boost/bind.hpp"99 99 100 100 OSG_BEGIN_NAMESPACE … … 1090 1090 "NULL", 1091 1091 0, 1092 (Proto typeCreateF) &TextureChunkBase::createEmpty,1092 (ProtoContainerCreateF) &TextureChunkBase::createEmpty, 1093 1093 TextureChunk::initMethod, 1094 1094 (InitalInsertDescFunc) &TextureChunkBase::classDescInserter, … … 1777 1777 /*------------------------------ get -----------------------------------*/ 1778 1778 1779 FieldContainerType &TextureChunkBase::getType(void) 1779 FieldContainerType & 1780 TextureChunkBase::getType(void) 1780 1781 { 1781 1782 return _type; 1782 1783 } 1783 1784 1784 const FieldContainerType &TextureChunkBase::getType(void) const 1785 FieldContainerType const & 1786 TextureChunkBase::getType(void) const 1785 1787 { 1786 1788 return _type; 1787 1789 } 1788 1790 1789 UInt32 TextureChunkBase::getContainerSize(void) const 1791 UInt32 1792 TextureChunkBase::getContainerSize(void) const 1790 1793 { 1791 1794 return sizeof(TextureChunk); … … 2841 2844 TextureChunkBase::TextureChunkBase(const TextureChunkBase &source) : 2842 2845 Inherited(source), 2843 _sfImage (ImageInternalRefPtr( NullFC)),2846 _sfImage (ImageInternalRefPtr()), 2844 2847 _sfInternalFormat (source._sfInternalFormat ), 2845 2848 _sfExternalFormat (source._sfExternalFormat ),
