/* ----------------------------------------------------------------------------- This source file is part of OGRE (Object-oriented Graphics Rendering Engine) For the latest info, see http://www.ogre3d.org/ Copyright (c) 2000-2013 Torus Knot Software Ltd Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ----------------------------------------------------------------------------- */ #ifndef __MemoryAllocatorConfig_H__ #define __MemoryAllocatorConfig_H__ #include "OgreMemoryAllocatedObject.h" #include "OgreHeaderPrefix.h" /** \addtogroup Core * @{ */ /** \addtogroup Memory * @{ */ /** @file This file configures Ogre's memory allocators. You can modify this file to alter the allocation routines used for Ogre's main objects. When customising memory allocation, all you need to do is provide one or more custom allocation policy classes. These classes need to implement: @code // Allocate bytes - file/line/func information should be optional, // will be provided when available but not everywhere (e.g. release mode, STL allocations) static inline void* allocateBytes(size_t count, const char* file = 0, int line = 0, const char* func = 0); // Free bytes static inline void deallocateBytes(void* ptr); // Return the max number of bytes available to be allocated in a single allocation static inline size_t getMaxAllocationSize(); @endcode Policies are then used as implementations for the wrapper classes and macros which call them. AllocatedObject for example provides the hooks to override the new and delete operators for a class and redirect the functionality to the policy. STLAllocator is a class which is provided to STL containers in order to hook up allocation of the containers members to the allocation policy. @par In addition to linking allocations to policies, this class also defines a number of macros to allow debugging information to be passed along with allocations, such as the file and line number they originate from. It's important to realise that we do not redefine the 'new' and 'delete' symbols with macros, because that's very difficult to consistently do when other libraries are also trying to do the same thing; instead we use dedicated 'OGRE_' prefixed macros. See OGRE_NEW and related items. @par The base macros you can use are listed below, in order of preference and with their conditions stated: Here are some examples: @code /// AllocatedObject subclass, with custom operator new / delete AllocatedClass* obj = OGRE_NEW AllocatedClass(); OGRE_DELETE obj; AllocatedClass* array = OGRE_NEW AllocatedClass[10]; OGRE_DELETE [] obj; /// Non-virtual or external class, constructors / destructors called ExternalClass* obj = OGRE_NEW_T(ExternalClass, MEMCATEGORY_GENERAL)(constructorArgs); OGRE_DELETE_T(obj, ExternalClass, MEMCATEGORY_GENERAL); ExternalClass* obj = OGRE_NEW_ARRAY_T(ExternalClass, 10, MEMCATEGORY_GENERAL); OGRE_DELETE_ARRAY_T(obj, NonVirtualClass, 10, MEMCATEGORY_GENERAL); /// Primitive types long* pLong = OGRE_ALLOC_T(long, 10, MEMCATEGORY_GENERAL); OGRE_FREE(pLong, MEMCATEGORY_GENERAL); /// Primitive type with constructor (you can mismatch OGRE_NEW_T and OGRE_FREE because no destructor) long* pLong = OGRE_NEW_T(long, MEMCATEGORY_GENERAL)(0); OGRE_FREE(pLong, MEMCATEGORY_GENERAL); /// Raw memory void* pVoid = OGRE_MALLOC(1024, MEMCATEGORY_GENERAL); OGRE_FREE(pVoid, MEMCATEGORY_GENERAL); @endcode OGRE_ALLOC_T is also the route to go for allocating real primitive types like int & float. You free the memory using OGRE_FREE, and both variants have SIMD and custom alignment variants. */ /** @} */ /** @} */ namespace Ogre { /** \addtogroup Core * @{ */ /** \addtogroup Memory * @{ */ /** A set of categories that indicate the purpose of a chunk of memory being allocated. These categories will be provided at allocation time in order to allow the allocation policy to vary its behaviour if it wishes. This allows you to use a single policy but still have variant behaviour. The level of control it gives you is at a higher level than assigning different policies to different classes, but is the only control you have over general allocations that are primitive types. */ enum MemoryCategory { /// General purpose MEMCATEGORY_GENERAL = 0, /// Geometry held in main memory MEMCATEGORY_GEOMETRY = 1, /// Animation data like tracks, bone matrices MEMCATEGORY_ANIMATION = 2, /// Nodes, control data MEMCATEGORY_SCENE_CONTROL = 3, /// Scene object instances MEMCATEGORY_SCENE_OBJECTS = 4, /// Other resources MEMCATEGORY_RESOURCE = 5, /// Scripting MEMCATEGORY_SCRIPTING = 6, /// Rendersystem structures MEMCATEGORY_RENDERSYS = 7, // sentinel value, do not use MEMCATEGORY_COUNT = 8 }; /** @} */ /** @} */ } #include "OgreMemoryAllocatedObject.h" #include "OgreMemorySTLAllocator.h" #if OGRE_MEMORY_ALLOCATOR == OGRE_MEMORY_ALLOCATOR_NEDPOOLING # include "OgreMemoryNedPooling.h" namespace Ogre { // configure default allocators based on the options above // notice how we're not using the memory categories here but still roughing them out // in your allocators you might choose to create different policies per category // configurable category, for general malloc // notice how we ignore the category here, you could specialise template class CategorisedAllocPolicy : public NedPoolingPolicy{}; template class CategorisedAlignAllocPolicy : public NedPoolingAlignedPolicy{}; } #elif OGRE_MEMORY_ALLOCATOR == OGRE_MEMORY_ALLOCATOR_NED # include "OgreMemoryNedAlloc.h" namespace Ogre { // configure default allocators based on the options above // notice how we're not using the memory categories here but still roughing them out // in your allocators you might choose to create different policies per category // configurable category, for general malloc // notice how we ignore the category here, you could specialise template class CategorisedAllocPolicy : public NedAllocPolicy{}; template class CategorisedAlignAllocPolicy : public NedAlignedAllocPolicy{}; } #elif OGRE_MEMORY_ALLOCATOR == OGRE_MEMORY_ALLOCATOR_STD # include "OgreMemoryStdAlloc.h" namespace Ogre { // configure default allocators based on the options above // notice how we're not using the memory categories here but still roughing them out // in your allocators you might choose to create different policies per category // configurable category, for general malloc // notice how we ignore the category here template class CategorisedAllocPolicy : public StdAllocPolicy{}; template class CategorisedAlignAllocPolicy : public StdAlignedAllocPolicy{}; // if you wanted to specialise the allocation per category, here's how it might work: // template <> class CategorisedAllocPolicy : public YourSceneObjectAllocPolicy{}; // template class CategorisedAlignAllocPolicy : public YourSceneObjectAllocPolicy{}; } #else // your allocators here? #endif namespace Ogre { // Useful shortcuts typedef CategorisedAllocPolicy GeneralAllocPolicy; typedef CategorisedAllocPolicy GeometryAllocPolicy; typedef CategorisedAllocPolicy AnimationAllocPolicy; typedef CategorisedAllocPolicy SceneCtlAllocPolicy; typedef CategorisedAllocPolicy SceneObjAllocPolicy; typedef CategorisedAllocPolicy ResourceAllocPolicy; typedef CategorisedAllocPolicy ScriptingAllocPolicy; typedef CategorisedAllocPolicy RenderSysAllocPolicy; // Now define all the base classes for each allocation typedef AllocatedObject GeneralAllocatedObject; typedef AllocatedObject GeometryAllocatedObject; typedef AllocatedObject AnimationAllocatedObject; typedef AllocatedObject SceneCtlAllocatedObject; typedef AllocatedObject SceneObjAllocatedObject; typedef AllocatedObject ResourceAllocatedObject; typedef AllocatedObject ScriptingAllocatedObject; typedef AllocatedObject RenderSysAllocatedObject; // Per-class allocators defined here // NOTE: small, non-virtual classes should not subclass an allocator // the virtual function table could double their size and make them less efficient // use primitive or STL allocators / deallocators for those typedef ScriptingAllocatedObject AbstractNodeAlloc; typedef AnimationAllocatedObject AnimableAlloc; typedef AnimationAllocatedObject AnimationAlloc; typedef GeneralAllocatedObject ArchiveAlloc; typedef GeometryAllocatedObject BatchedGeometryAlloc; typedef RenderSysAllocatedObject BufferAlloc; typedef GeneralAllocatedObject CodecAlloc; typedef ResourceAllocatedObject CompositorInstAlloc; typedef GeneralAllocatedObject ConfigAlloc; typedef GeneralAllocatedObject ControllerAlloc; typedef GeometryAllocatedObject DebugGeomAlloc; typedef GeneralAllocatedObject DynLibAlloc; typedef GeometryAllocatedObject EdgeDataAlloc; typedef GeneralAllocatedObject FactoryAlloc; typedef SceneObjAllocatedObject FXAlloc; typedef GeneralAllocatedObject ImageAlloc; typedef GeometryAllocatedObject IndexDataAlloc; typedef GeneralAllocatedObject LogAlloc; typedef SceneObjAllocatedObject MovableAlloc; typedef SceneCtlAllocatedObject NodeAlloc; typedef SceneObjAllocatedObject OverlayAlloc; typedef RenderSysAllocatedObject GpuParamsAlloc; typedef ResourceAllocatedObject PassAlloc; typedef GeometryAllocatedObject PatchAlloc; typedef GeneralAllocatedObject PluginAlloc; typedef GeneralAllocatedObject ProfilerAlloc; typedef GeometryAllocatedObject ProgMeshAlloc; typedef SceneCtlAllocatedObject RenderQueueAlloc; typedef RenderSysAllocatedObject RenderSysAlloc; typedef GeneralAllocatedObject RootAlloc; typedef ResourceAllocatedObject ResourceAlloc; typedef GeneralAllocatedObject SerializerAlloc; typedef SceneCtlAllocatedObject SceneMgtAlloc; typedef ScriptingAllocatedObject ScriptCompilerAlloc; typedef ScriptingAllocatedObject ScriptTranslatorAlloc; typedef SceneCtlAllocatedObject ShadowDataAlloc; typedef GeneralAllocatedObject StreamAlloc; typedef SceneObjAllocatedObject SubEntityAlloc; typedef ResourceAllocatedObject SubMeshAlloc; typedef ResourceAllocatedObject TechniqueAlloc; typedef GeneralAllocatedObject TimerAlloc; typedef ResourceAllocatedObject TextureUnitStateAlloc; typedef GeneralAllocatedObject UtilityAlloc; typedef GeometryAllocatedObject VertexDataAlloc; typedef RenderSysAllocatedObject ViewportAlloc; typedef SceneCtlAllocatedObject LodAlloc; typedef GeneralAllocatedObject FileSystemLayerAlloc; // Containers (by-value only) // Will be of the form: // typedef STLAllocator TAlloc; // for use in vector::type } // Util functions namespace Ogre { /** \addtogroup Core * @{ */ /** \addtogroup Memory * @{ */ /** Utility function for constructing an array of objects with placement new, without using new[] (which allocates an undocumented amount of extra memory and so isn't appropriate for custom allocators). */ template T* constructN(T* basePtr, size_t count) { for (size_t i = 0; i < count; ++i) { new ((void*)(basePtr+i)) T(); } return basePtr; } /** @} */ /** @} */ } // define macros /** \addtogroup Core * @{ */ /** \addtogroup Memory * @{ */ #if OGRE_DEBUG_MODE /// Allocate a block of raw memory, and indicate the category of usage # define OGRE_MALLOC(bytes, category) ::Ogre::CategorisedAllocPolicy::allocateBytes(bytes, __FILE__, __LINE__, __FUNCTION__) /// Allocate a block of memory for a primitive type, and indicate the category of usage # define OGRE_ALLOC_T(T, count, category) static_cast(::Ogre::CategorisedAllocPolicy::allocateBytes(sizeof(T)*(count), __FILE__, __LINE__, __FUNCTION__)) /// Free the memory allocated with OGRE_MALLOC or OGRE_ALLOC_T. Category is required to be restated to ensure the matching policy is used # define OGRE_FREE(ptr, category) ::Ogre::CategorisedAllocPolicy::deallocateBytes((void*)ptr) /// Allocate space for one primitive type, external type or non-virtual type with constructor parameters # define OGRE_NEW_T(T, category) new (::Ogre::CategorisedAllocPolicy::allocateBytes(sizeof(T), __FILE__, __LINE__, __FUNCTION__)) T /// Allocate a block of memory for 'count' primitive types - do not use for classes that inherit from AllocatedObject # define OGRE_NEW_ARRAY_T(T, count, category) ::Ogre::constructN(static_cast(::Ogre::CategorisedAllocPolicy::allocateBytes(sizeof(T)*(count), __FILE__, __LINE__, __FUNCTION__)), count) /// Free the memory allocated with OGRE_NEW_T. Category is required to be restated to ensure the matching policy is used # define OGRE_DELETE_T(ptr, T, category) if(ptr){(ptr)->~T(); ::Ogre::CategorisedAllocPolicy::deallocateBytes((void*)ptr);} /// Free the memory allocated with OGRE_NEW_ARRAY_T. Category is required to be restated to ensure the matching policy is used, count and type to call destructor # define OGRE_DELETE_ARRAY_T(ptr, T, count, category) if(ptr){for (size_t b = 0; b < count; ++b) { (ptr)[b].~T();} ::Ogre::CategorisedAllocPolicy::deallocateBytes((void*)ptr);} // aligned allocation /// Allocate a block of raw memory aligned to SIMD boundaries, and indicate the category of usage # define OGRE_MALLOC_SIMD(bytes, category) ::Ogre::CategorisedAlignAllocPolicy::allocateBytes(bytes, __FILE__, __LINE__, __FUNCTION__) /// Allocate a block of raw memory aligned to user defined boundaries, and indicate the category of usage # define OGRE_MALLOC_ALIGN(bytes, category, align) ::Ogre::CategorisedAlignAllocPolicy::allocateBytes(bytes, __FILE__, __LINE__, __FUNCTION__) /// Allocate a block of memory for a primitive type aligned to SIMD boundaries, and indicate the category of usage # define OGRE_ALLOC_T_SIMD(T, count, category) static_cast(::Ogre::CategorisedAlignAllocPolicy::allocateBytes(sizeof(T)*(count), __FILE__, __LINE__, __FUNCTION__)) /// Allocate a block of memory for a primitive type aligned to user defined boundaries, and indicate the category of usage # define OGRE_ALLOC_T_ALIGN(T, count, category, align) static_cast(::Ogre::CategorisedAlignAllocPolicy::allocateBytes(sizeof(T)*(count), __FILE__, __LINE__, __FUNCTION__)) /// Free the memory allocated with either OGRE_MALLOC_SIMD or OGRE_ALLOC_T_SIMD. Category is required to be restated to ensure the matching policy is used # define OGRE_FREE_SIMD(ptr, category) ::Ogre::CategorisedAlignAllocPolicy::deallocateBytes(ptr) /// Free the memory allocated with either OGRE_MALLOC_ALIGN or OGRE_ALLOC_T_ALIGN. Category is required to be restated to ensure the matching policy is used # define OGRE_FREE_ALIGN(ptr, category, align) ::Ogre::CategorisedAlignAllocPolicy::deallocateBytes(ptr) /// Allocate space for one primitive type, external type or non-virtual type aligned to SIMD boundaries # define OGRE_NEW_T_SIMD(T, category) new (::Ogre::CategorisedAlignAllocPolicy::allocateBytes(sizeof(T), __FILE__, __LINE__, __FUNCTION__)) T /// Allocate a block of memory for 'count' primitive types aligned to SIMD boundaries - do not use for classes that inherit from AllocatedObject # define OGRE_NEW_ARRAY_T_SIMD(T, count, category) ::Ogre::constructN(static_cast(::Ogre::CategorisedAlignAllocPolicy::allocateBytes(sizeof(T)*(count), __FILE__, __LINE__, __FUNCTION__)), count) /// Free the memory allocated with OGRE_NEW_T_SIMD. Category is required to be restated to ensure the matching policy is used # define OGRE_DELETE_T_SIMD(ptr, T, category) if(ptr){(ptr)->~T(); ::Ogre::CategorisedAlignAllocPolicy::deallocateBytes(ptr);} /// Free the memory allocated with OGRE_NEW_ARRAY_T_SIMD. Category is required to be restated to ensure the matching policy is used, count and type to call destructor # define OGRE_DELETE_ARRAY_T_SIMD(ptr, T, count, category) if(ptr){for (size_t b = 0; b < count; ++b) { (ptr)[b].~T();} ::Ogre::CategorisedAlignAllocPolicy::deallocateBytes(ptr);} /// Allocate space for one primitive type, external type or non-virtual type aligned to user defined boundaries # define OGRE_NEW_T_ALIGN(T, category, align) new (::Ogre::CategorisedAlignAllocPolicy::allocateBytes(sizeof(T), __FILE__, __LINE__, __FUNCTION__)) T /// Allocate a block of memory for 'count' primitive types aligned to user defined boundaries - do not use for classes that inherit from AllocatedObject # define OGRE_NEW_ARRAY_T_ALIGN(T, count, category, align) ::Ogre::constructN(static_cast(::Ogre::CategorisedAlignAllocPolicy::allocateBytes(sizeof(T)*(count), __FILE__, __LINE__, __FUNCTION__)), count) /// Free the memory allocated with OGRE_NEW_T_ALIGN. Category is required to be restated to ensure the matching policy is used # define OGRE_DELETE_T_ALIGN(ptr, T, category, align) if(ptr){(ptr)->~T(); ::Ogre::CategorisedAlignAllocPolicy::deallocateBytes(ptr);} /// Free the memory allocated with OGRE_NEW_ARRAY_T_ALIGN. Category is required to be restated to ensure the matching policy is used, count and type to call destructor # define OGRE_DELETE_ARRAY_T_ALIGN(ptr, T, count, category, align) if(ptr){for (size_t _b = 0; _b < count; ++_b) { (ptr)[_b].~T();} ::Ogre::CategorisedAlignAllocPolicy::deallocateBytes(ptr);} // new / delete for classes deriving from AllocatedObject (alignment determined by per-class policy) // Also hooks up the file/line/function params // Can only be used with classes that derive from AllocatedObject since customised new/delete needed # define OGRE_NEW new (__FILE__, __LINE__, __FUNCTION__) # define OGRE_DELETE delete #else // !OGRE_DEBUG_MODE /// Allocate a block of raw memory, and indicate the category of usage # define OGRE_MALLOC(bytes, category) ::Ogre::CategorisedAllocPolicy::allocateBytes(bytes) /// Allocate a block of memory for a primitive type, and indicate the category of usage # define OGRE_ALLOC_T(T, count, category) static_cast(::Ogre::CategorisedAllocPolicy::allocateBytes(sizeof(T)*(count))) /// Free the memory allocated with OGRE_MALLOC or OGRE_ALLOC_T. Category is required to be restated to ensure the matching policy is used # define OGRE_FREE(ptr, category) ::Ogre::CategorisedAllocPolicy::deallocateBytes((void*)ptr) /// Allocate space for one primitive type, external type or non-virtual type with constructor parameters # define OGRE_NEW_T(T, category) new (::Ogre::CategorisedAllocPolicy::allocateBytes(sizeof(T))) T /// Allocate a block of memory for 'count' primitive types - do not use for classes that inherit from AllocatedObject # define OGRE_NEW_ARRAY_T(T, count, category) ::Ogre::constructN(static_cast(::Ogre::CategorisedAllocPolicy::allocateBytes(sizeof(T)*(count))), count) /// Free the memory allocated with OGRE_NEW_T. Category is required to be restated to ensure the matching policy is used # define OGRE_DELETE_T(ptr, T, category) if(ptr){(ptr)->~T(); ::Ogre::CategorisedAllocPolicy::deallocateBytes((void*)ptr);} /// Free the memory allocated with OGRE_NEW_ARRAY_T. Category is required to be restated to ensure the matching policy is used, count and type to call destructor # define OGRE_DELETE_ARRAY_T(ptr, T, count, category) if(ptr){for (size_t b = 0; b < count; ++b) { (ptr)[b].~T();} ::Ogre::CategorisedAllocPolicy::deallocateBytes((void*)ptr);} // aligned allocation /// Allocate a block of raw memory aligned to SIMD boundaries, and indicate the category of usage # define OGRE_MALLOC_SIMD(bytes, category) ::Ogre::CategorisedAlignAllocPolicy::allocateBytes(bytes) /// Allocate a block of raw memory aligned to user defined boundaries, and indicate the category of usage # define OGRE_MALLOC_ALIGN(bytes, category, align) ::Ogre::CategorisedAlignAllocPolicy::allocateBytes(bytes) /// Allocate a block of memory for a primitive type aligned to SIMD boundaries, and indicate the category of usage # define OGRE_ALLOC_T_SIMD(T, count, category) static_cast(::Ogre::CategorisedAlignAllocPolicy::allocateBytes(sizeof(T)*(count))) /// Allocate a block of memory for a primitive type aligned to user defined boundaries, and indicate the category of usage # define OGRE_ALLOC_T_ALIGN(T, count, category, align) static_cast(::Ogre::CategorisedAlignAllocPolicy::allocateBytes(sizeof(T)*(count))) /// Free the memory allocated with either OGRE_MALLOC_SIMD or OGRE_ALLOC_T_SIMD. Category is required to be restated to ensure the matching policy is used # define OGRE_FREE_SIMD(ptr, category) ::Ogre::CategorisedAlignAllocPolicy::deallocateBytes((void*)ptr) /// Free the memory allocated with either OGRE_MALLOC_ALIGN or OGRE_ALLOC_T_ALIGN. Category is required to be restated to ensure the matching policy is used # define OGRE_FREE_ALIGN(ptr, category, align) ::Ogre::CategorisedAlignAllocPolicy::deallocateBytes((void*)ptr) /// Allocate space for one primitive type, external type or non-virtual type aligned to SIMD boundaries # define OGRE_NEW_T_SIMD(T, category) new (::Ogre::CategorisedAlignAllocPolicy::allocateBytes(sizeof(T))) T /// Allocate a block of memory for 'count' primitive types aligned to SIMD boundaries - do not use for classes that inherit from AllocatedObject # define OGRE_NEW_ARRAY_T_SIMD(T, count, category) ::Ogre::constructN(static_cast(::Ogre::CategorisedAlignAllocPolicy::allocateBytes(sizeof(T)*(count))), count) /// Free the memory allocated with OGRE_NEW_T_SIMD. Category is required to be restated to ensure the matching policy is used # define OGRE_DELETE_T_SIMD(ptr, T, category) if(ptr){(ptr)->~T(); ::Ogre::CategorisedAlignAllocPolicy::deallocateBytes((void*)ptr);} /// Free the memory allocated with OGRE_NEW_ARRAY_T_SIMD. Category is required to be restated to ensure the matching policy is used, count and type to call destructor # define OGRE_DELETE_ARRAY_T_SIMD(ptr, T, count, category) if(ptr){for (size_t b = 0; b < count; ++b) { (ptr)[b].~T();} ::Ogre::CategorisedAlignAllocPolicy::deallocateBytes((void*)ptr);} /// Allocate space for one primitive type, external type or non-virtual type aligned to user defined boundaries # define OGRE_NEW_T_ALIGN(T, category, align) new (::Ogre::CategorisedAlignAllocPolicy::allocateBytes(sizeof(T))) T /// Allocate a block of memory for 'count' primitive types aligned to user defined boundaries - do not use for classes that inherit from AllocatedObject # define OGRE_NEW_ARRAY_T_ALIGN(T, count, category, align) ::Ogre::constructN(static_cast(::Ogre::CategorisedAlignAllocPolicy::allocateBytes(sizeof(T)*(count))), count) /// Free the memory allocated with OGRE_NEW_T_ALIGN. Category is required to be restated to ensure the matching policy is used # define OGRE_DELETE_T_ALIGN(ptr, T, category, align) if(ptr){(ptr)->~T(); ::Ogre::CategorisedAlignAllocPolicy::deallocateBytes((void*)ptr);} /// Free the memory allocated with OGRE_NEW_ARRAY_T_ALIGN. Category is required to be restated to ensure the matching policy is used, count and type to call destructor # define OGRE_DELETE_ARRAY_T_ALIGN(ptr, T, count, category, align) if(ptr){for (size_t _b = 0; _b < count; ++_b) { (ptr)[_b].~T();} ::Ogre::CategorisedAlignAllocPolicy::deallocateBytes((void*)ptr);} // new / delete for classes deriving from AllocatedObject (alignment determined by per-class policy) # define OGRE_NEW new # define OGRE_DELETE delete #endif // OGRE_DEBUG_MODE namespace Ogre { /** Function which invokes OGRE_DELETE on a given pointer. @remarks Useful to pass custom deletion policies to external libraries (e. g. boost). */ template void deletePtr(T* ptr) { OGRE_DELETE ptr; } } /** @} */ /** @} */ #include "OgreHeaderSuffix.h" #endif