C:/quickbuild-1.2.13/working/root/Docs/TGEA_Offline_Docs/checkouts/engine/source/core/frameAllocator.h File Reference
Define Documentation
Value: template<> \ inline FrameTemp<type>::FrameTemp( const U32 count ) \ { \ AssertFatal( count > 0, "Allocating a FrameTemp with less than one instance" ); \ mWaterMark = FrameAllocator::getWaterMark(); \ mMemory = reinterpret_cast<type *>( FrameAllocator::alloc( sizeof( type ) * count ) ); \ } \ template<>\ inline FrameTemp<type>::~FrameTemp() \ { \ FrameAllocator::setWaterMark( mWaterMark ); \ } \
Function Documentation
|