/* ----------------------------------------------------------------------------- This source file is part of OGRE (Object-oriented Graphics Rendering Engine) For the latest info, see http://www.ogre3d.org/ Copyright (c) 2000-2006 Torus Knot Software Ltd Also see acknowledgements in Readme.html This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA, or go to http://www.gnu.org/copyleft/lesser.txt. You may alternatively use this source under the terms of a specific version of the OGRE Unrestricted License provided you have obtained such a license from Torus Knot Software Ltd. ----------------------------------------------------------------------------- */ #ifndef __Config_H_ #define __Config_H_ // Read configuration options; some systems use an auto-generated config.h, // other use a manually generated config.h; in any case just define // HAVE_CONFIG_H to include the custom config.h file. #ifdef HAVE_CONFIG_H #include "config.h" #endif /** If set to 1, profiling code will be included in the application. When you are deploying your application you will probably want to set this to 0 */ #define OGRE_PROFILING 0 /** There are three modes for handling asserts in OGRE: 0 - STANDARD - Standard asserts in debug builds, nothing in release builds 1 - RELEASE_EXCEPTIONS - Standard asserts in debug builds, exceptions in release builds 2 - EXCEPTIONS - Exceptions in debug builds, exceptions in release builds */ #define OGRE_ASSERT_MODE 0 /** If set to >0, OGRE will always 'think' that the graphics card only has the number of texture units specified. Very useful for testing multipass fallback. */ #define OGRE_PRETEND_TEXTURE_UNITS 0 /** If set to 1, Real is typedef'ed to double. Otherwise, Real is typedef'ed to float. Setting this allows you to perform mathematical operations in the CPU (Quaternion, Vector3 etc) with more precision, but bear in mind that the GPU still operates in single-precision mode. */ #ifndef OGRE_DOUBLE_PRECISION #define OGRE_DOUBLE_PRECISION 0 #endif /** Define number of texture coordinate sets allowed per vertex. */ #define OGRE_MAX_TEXTURE_COORD_SETS 6 /** Define max number of texture layers allowed per pass on any card. */ #define OGRE_MAX_TEXTURE_LAYERS 16 /** Define max number of lights allowed per pass. */ #define OGRE_MAX_SIMULTANEOUS_LIGHTS 8 /** Define max number of blending weights allowed per vertex. */ #define OGRE_MAX_BLEND_WEIGHTS 4 /** Define this if you want to link OGRE as a static lib (preferably as a project file) */ //#define OGRE_STATIC_LIB // define the memory allocator configuration to use #define OGRE_MEMORY_ALLOCATOR_STD 1 #define OGRE_MEMORY_ALLOCATOR_NED 2 // you need to have nedmalloc on your path for this #define OGRE_MEMORY_ALLOCATOR_USER 3 #ifndef OGRE_MEMORY_ALLOCATOR # define OGRE_MEMORY_ALLOCATOR OGRE_MEMORY_ALLOCATOR_NED #endif // enable or disable the memory tracker, recording the memory allocations & tracking leaks // default is to disable since it's expensive, but you can enable if needed per build target #ifndef OGRE_MEMORY_TRACKER_DEBUG_MODE # define OGRE_MEMORY_TRACKER_DEBUG_MODE 0 #endif #ifndef OGRE_MEMORY_TRACKER_RELEASE_MODE # define OGRE_MEMORY_TRACKER_RELEASE_MODE 0 #endif /** Define max number of multiple render targets (MRTs) to render to at once. */ #define OGRE_MAX_MULTIPLE_RENDER_TARGETS 8 /** Support for multithreading, there are 3 options OGRE_THREAD_SUPPORT = 0 No support for threading. OGRE_THREAD_SUPPORT = 1 Thread support for background loading, by both loading and constructing resources in a background thread. Resource management and SharedPtr handling becomes thread-safe, and resources may be completely loaded in the background. The places where threading is available are clearly marked, you should assume state is NOT thread safe unless otherwise stated in relation to this flag. OGRE_THREAD_SUPPORT = 2 Thread support for background resource preparation. This means that resource data can streamed into memory in the background, but the final resource construction (including RenderSystem dependencies) is still done in the primary thread. Has a lower synchronisation primitive overhead than full threading while still allowing the major blocking aspects of resource management (I/O) to be done in the background. */ #ifndef OGRE_THREAD_SUPPORT #define OGRE_THREAD_SUPPORT 0 #endif #if OGRE_THREAD_SUPPORT != 0 && OGRE_THREAD_SUPPORT != 1 && OGRE_THREAD_SUPPORT != 2 #define OGRE_THREAD_SUPPORT 1 #endif /** Disables use of the FreeImage image library for loading images. WARNING: Use only when you want to provide your own image loading code via codecs. */ #ifndef OGRE_NO_FREEIMAGE #define OGRE_NO_FREEIMAGE 0 #endif /** Disables use of the DevIL image library for loading images. By default DevIL is disabled in Eihort in favour of FreeImage, but you may re-enable it if you choose */ #ifndef OGRE_NO_DEVIL #define OGRE_NO_DEVIL 1 #endif /** Disables use of the internal image codec for loading DDS files. WARNING: Use only when you want to provide your own image loading code via codecs. */ #ifndef OGRE_NO_DDS_CODEC #define OGRE_NO_DDS_CODEC 0 #endif /** Enables the use of the new script compilers when Ogre compiles resource scripts. */ #ifndef OGRE_USE_NEW_COMPILERS #define OGRE_USE_NEW_COMPILERS 1 #endif #endif