青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

的筆記

隨時隨地編輯

曬曬預處理Ogre宏

其一,OgreBuildSettings
 1#ifndef __Custom_Config_H_
 2#define __Custom_Config_H_
 3
 4// CMake auto-generated configuration options
 5
 6/* #undef OGRE_STATIC_LIB */
 7
 8#define OGRE_BUILD_RENDERSYSTEM_D3D9
 9#define OGRE_BUILD_RENDERSYSTEM_D3D10
10#define OGRE_BUILD_RENDERSYSTEM_D3D11
11#define OGRE_BUILD_RENDERSYSTEM_GL
12/* #undef OGRE_BUILD_RENDERSYSTEM_GLES */
13#define OGRE_BUILD_PLUGIN_BSP
14#define OGRE_BUILD_PLUGIN_OCTREE
15#define OGRE_BUILD_PLUGIN_PCZ
16#define OGRE_BUILD_PLUGIN_PFX
17#define OGRE_BUILD_PLUGIN_CG
18
19#define OGRE_CONFIG_LITTLE_ENDIAN
20/* #undef OGRE_CONFIG_BIG_ENDIAN */
21
22#define OGRE_DOUBLE_PRECISION 0
23
24#define OGRE_MEMORY_ALLOCATOR 4
25
26#define OGRE_CONTAINERS_USE_CUSTOM_MEMORY_ALLOCATOR 1
27
28#define OGRE_STRING_USE_CUSTOM_MEMORY_ALLOCATOR 0
29
30#define OGRE_MEMORY_TRACKER_DEBUG_MODE 0
31
32#define OGRE_MEMORY_TRACKER_RELEASE_MODE 0
33
34#define OGRE_THREAD_SUPPORT 0
35
36#define OGRE_THREAD_PROVIDER 0
37
38#define OGRE_NO_FREEIMAGE 0
39
40#define OGRE_NO_DDS_CODEC 0
41
42#define OGRE_NO_PVRTC_CODEC 1
43
44#define OGRE_NO_ZIP_ARCHIVE 0
45
46#define OGRE_NO_VIEWPORT_ORIENTATIONMODE 1
47
48#define OGRE_USE_NEW_COMPILERS 1
49
50#define OGRE_USE_BOOST 0
51
52#define OGRE_PROFILING 0
53
54#define RTSHADER_SYSTEM_BUILD_CORE_SHADERS
55
56#define RTSHADER_SYSTEM_BUILD_EXT_SHADERS
57
58#endif

其二,ogreconfig 
  1#ifndef __Config_H_
  2#define __Config_H_
  3
  4// Include the CMake-generated build settings.
  5// If you get complaints that this file is missing, then you're probably
  6// trying to link directly against your source dir. You must then add
  7// %BUILD_DIR%/include to your include search path to find OgreBuildSettings.h.
  8#include "OgreBuildSettings.h"
  9
 10/** If set to 1, profiling code will be included in the application. When you
 11    are deploying your application you will probably want to set this to 0 */

 12#ifndef OGRE_PROFILING
 13#define OGRE_PROFILING 0
 14#endif
 15
 16/** There are three modes for handling asserts in OGRE:
 170 - STANDARD - Standard asserts in debug builds, nothing in release builds
 181 - RELEASE_EXCEPTIONS - Standard asserts in debug builds, exceptions in release builds
 192 - EXCEPTIONS - Exceptions in debug builds, exceptions in release builds
 20*/

 21#define OGRE_ASSERT_MODE 0
 22
 23/** If set to >0, OGRE will always 'think' that the graphics card only has the
 24    number of texture units specified. Very useful for testing multipass fallback.
 25*/

 26#define OGRE_PRETEND_TEXTURE_UNITS 0
 27
 28/** If set to 1, Real is typedef'ed to double. Otherwise, Real is typedef'ed
 29    to float. Setting this allows you to perform mathematical operations in the
 30    CPU (Quaternion, Vector3 etc) with more precision, but bear in mind that the
 31    GPU still operates in single-precision mode.
 32*/

 33#ifndef OGRE_DOUBLE_PRECISION
 34#define OGRE_DOUBLE_PRECISION 0
 35#endif
 36
 37/** Define number of texture coordinate sets allowed per vertex.
 38*/

 39#define OGRE_MAX_TEXTURE_COORD_SETS 6
 40
 41/** Define max number of texture layers allowed per pass on any card.
 42*/

 43#define OGRE_MAX_TEXTURE_LAYERS 16
 44
 45/** Define max number of lights allowed per pass.
 46*/

 47#define OGRE_MAX_SIMULTANEOUS_LIGHTS 8
 48
 49/** Define max number of blending weights allowed per vertex.
 50*/

 51#define OGRE_MAX_BLEND_WEIGHTS 4
 52
 53/** Define this if you want to link OGRE as a static lib (preferably as a project file)
 54*/

 55//#define OGRE_STATIC_LIB
 56
 57
 58// define the memory allocator configuration to use
 59#define OGRE_MEMORY_ALLOCATOR_STD 1
 60#define OGRE_MEMORY_ALLOCATOR_NED 2
 61#define OGRE_MEMORY_ALLOCATOR_USER 3
 62#define OGRE_MEMORY_ALLOCATOR_NEDPOOLING 4
 63
 64#ifndef OGRE_MEMORY_ALLOCATOR
 65#  define OGRE_MEMORY_ALLOCATOR OGRE_MEMORY_ALLOCATOR_NEDPOOLING
 66#endif
 67
 68// Whether to use the custom memory allocator in STL containers
 69#ifndef OGRE_CONTAINERS_USE_CUSTOM_MEMORY_ALLOCATOR
 70#  define OGRE_CONTAINERS_USE_CUSTOM_MEMORY_ALLOCATOR 1
 71#endif
 72
 73//if you want to make Ogre::String use the custom memory allocator then set:
 74//#define OGRE_STRING_USE_CUSTOM_MEMORY_ALLOCATOR 1
 75// Doing this will mean Ogre's strings will not be compatible with std::string however
 76#ifndef OGRE_STRING_USE_CUSTOM_MEMORY_ALLOCATOR
 77#    define OGRE_STRING_USE_CUSTOM_MEMORY_ALLOCATOR 0
 78#endif
 79
 80// enable or disable the memory tracker, recording the memory allocations & tracking leaks
 81// default is to disable since it's expensive, but you can enable if needed per build target
 82
 83#ifndef OGRE_MEMORY_TRACKER_DEBUG_MODE
 84#  define OGRE_MEMORY_TRACKER_DEBUG_MODE 0
 85#endif
 86
 87#ifndef OGRE_MEMORY_TRACKER_RELEASE_MODE
 88#  define OGRE_MEMORY_TRACKER_RELEASE_MODE 0
 89#endif
 90/** Define max number of multiple render targets (MRTs) to render to at once.
 91*/

 92#define OGRE_MAX_MULTIPLE_RENDER_TARGETS 8
 93
 94/** Support for multithreading, there are 3 options
 95
 96OGRE_THREAD_SUPPORT = 0
 97    No support for threading.        
 98OGRE_THREAD_SUPPORT = 1
 99    Thread support for background loading, by both loading and constructing resources
100    in a background thread. Resource management and SharedPtr handling becomes
101    thread-safe, and resources may be completely loaded in the background. 
102    The places where threading is available are clearly
103    marked, you should assume state is NOT thread safe unless otherwise
104    stated in relation to this flag.
105OGRE_THREAD_SUPPORT = 2
106    Thread support for background resource preparation. This means that resource
107    data can streamed into memory in the background, but the final resource
108    construction (including RenderSystem dependencies) is still done in the primary
109    thread. Has a lower synchronisation primitive overhead than full threading
110    while still allowing the major blocking aspects of resource management (I/O)
111    to be done in the background.
112*/

113#ifndef OGRE_THREAD_SUPPORT
114#define OGRE_THREAD_SUPPORT 0
115#endif
116#if OGRE_THREAD_SUPPORT != 0 && OGRE_THREAD_SUPPORT != 1 && OGRE_THREAD_SUPPORT != 2
117#define OGRE_THREAD_SUPPORT 0
118#endif
119
120/** Provider for threading functionality, there are 4 options.
121
122OGRE_THREAD_PROVIDER = 0
123    No support for threading.
124OGRE_THREAD_PROVIDER = 1
125    Boost libraries provide threading functionality.
126OGRE_THREAD_PROVIDER = 2
127    Poco libraries provide threading functionality.
128OGRE_THREAD_PROVIDER = 3
129    TBB library provides threading functionality.
130*/

131#ifndef OGRE_THREAD_PROVIDER
132#define OGRE_THREAD_PROVIDER 0
133#endif
134
135/** Disables use of the FreeImage image library for loading images.
136WARNING: Use only when you want to provide your own image loading code via codecs.
137*/

138#ifndef OGRE_NO_FREEIMAGE
139#define OGRE_NO_FREEIMAGE 0
140#endif
141
142/** Disables use of the DevIL image library for loading images.
143By default DevIL is disabled in Eihort in favour of FreeImage, but you may re-enable
144it if you choose
145*/

146#ifndef OGRE_NO_DEVIL
147#define OGRE_NO_DEVIL 1
148#endif
149
150/** Disables use of the internal image codec for loading DDS files.
151WARNING: Use only when you want to provide your own image loading code via codecs.
152*/

153#ifndef OGRE_NO_DDS_CODEC
154#define OGRE_NO_DDS_CODEC 0
155#endif
156
157/** Disables use of the ZIP archive support.
158WARNING: Disabling this will make the samples unusable.
159*/

160#ifndef OGRE_NO_ZIP_ARCHIVE
161#define OGRE_NO_ZIP_ARCHIVE 0
162#endif
163
164/** Enables the use of the new script compilers when Ogre compiles resource scripts.
165*/

166#ifndef OGRE_USE_NEW_COMPILERS
167#define OGRE_USE_NEW_COMPILERS 1
168#endif
169
170#endif

posted on 2011-06-21 11:20 的筆記 閱讀(1123) 評論(1)  編輯 收藏 引用

評論

# re: 曬曬預處理Ogre宏[未登錄] 2014-04-10 09:11 aa

有意思嗎?樓豬  回復  更多評論   

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            国产欧美在线播放| 亚洲影院免费观看| 欧美激情一区二区三区在线| 亚洲午夜视频在线观看| 亚洲精品久久嫩草网站秘色| 老牛嫩草一区二区三区日本| 久久国产乱子精品免费女 | 久久久久久久久久码影片| 一区二区三区高清视频在线观看| 亚洲人成在线观看网站高清| 国产精品视频导航| 一区在线免费观看| 亚洲人成亚洲人成在线观看| 一区二区精品在线观看| 欧美亚洲在线| 欧美福利在线| 欧美一级精品大片| 欧美深夜福利| 亚洲麻豆av| 欧美在线一二三区| 亚洲免费不卡| 欧美激情亚洲国产| 国产一区二区欧美| 亚洲午夜激情网页| 亚洲精品日产精品乱码不卡| 久久精品国产2020观看福利| 欧美日韩国产bt| 亚洲高清免费| 久久久水蜜桃av免费网站| 亚洲一区二区三区四区五区黄| 蜜桃av噜噜一区二区三区| 国产一区二区三区免费在线观看| 午夜精品久久久久久久男人的天堂| 男人的天堂亚洲| 久久久国产成人精品| 国产一区欧美| 欧美激情网友自拍| 欧美不卡福利| 一本色道久久88综合亚洲精品ⅰ| 欧美成人午夜激情视频| 久久亚裔精品欧美| 亚洲激情视频网| 亚洲精品乱码久久久久久按摩观 | 一本一本久久a久久精品综合妖精| 久久中文欧美| 免费欧美在线视频| 99国产一区| 欧美亚洲日本国产| 亚洲国产婷婷香蕉久久久久久| 狠狠色丁香婷婷综合| 欧美成人精品高清在线播放| 久久激情网站| 99热在线精品观看| 99国产精品| 在线观看av一区| 一本大道久久a久久精品综合| 国产一区再线| 亚洲一区国产精品| 91久久精品国产| 亚洲午夜在线观看| 亚洲三级影院| 一色屋精品视频免费看| 亚洲人成网站色ww在线| 国产精品综合av一区二区国产馆| 欧美风情在线观看| 国产亚洲精品bt天堂精选| 亚洲精品乱码久久久久久日本蜜臀| 国产精品一区二区三区乱码| 亚洲福利视频专区| 黄色精品在线看| 欧美一级午夜免费电影| 中文在线资源观看网站视频免费不卡 | 亚洲精品美女在线观看| 国产日韩一区二区三区在线| 亚洲欧洲在线视频| 亚洲国产欧美在线| 欧美va天堂va视频va在线| 免费日韩视频| 亚洲高清三级视频| 欧美成人高清视频| 夜夜嗨一区二区| 中文亚洲欧美| 激情另类综合| 欧美国产精品v| 在线视频亚洲| 久久综合给合久久狠狠狠97色69| 国产一区91| 欧美伦理视频网站| 午夜精品久久久久久| 久久视频国产精品免费视频在线| 国精品一区二区三区| 久久一区国产| 午夜精品理论片| 亚洲成色www久久网站| 亚洲一级黄色av| 精品二区久久| 国产欧美一二三区| 欧美日韩国产综合视频在线观看中文 | 亚洲免费成人| 美女黄毛**国产精品啪啪| 亚洲午夜国产一区99re久久 | 西瓜成人精品人成网站| 亚洲福利国产精品| 久久久综合网站| 先锋影音一区二区三区| 在线视频亚洲欧美| 亚洲精品亚洲人成人网| 在线观看欧美亚洲| 国产视频一区在线观看| 国产精品人人爽人人做我的可爱| 久久在精品线影院精品国产| 午夜综合激情| 久久国产一区二区三区| 亚洲欧美国产日韩中文字幕| 中国av一区| 午夜精品久久久99热福利| 午夜在线一区| 久久网站免费| 欧美精品18+| 欧美午夜久久| 国产专区精品视频| 亚洲国产欧美精品| avtt综合网| 久久精品国产99国产精品澳门| 欧美一区二区三区在线观看视频| 亚洲伊人网站| 免费黄网站欧美| 一区二区三区色| 久久久不卡网国产精品一区| 你懂的亚洲视频| 国产精品美女久久久浪潮软件| 国产一区二区毛片| 一区二区三区四区五区精品视频| 亚洲欧美日韩国产中文| 欧美激情精品久久久久久黑人| 亚洲卡通欧美制服中文| 西瓜成人精品人成网站| 欧美久久精品午夜青青大伊人| 国产精品美女视频网站| 亚洲第一区在线观看| 欧美极品aⅴ影院| 狠狠干成人综合网| 99av国产精品欲麻豆| 久久婷婷av| 性高湖久久久久久久久| 国产精品国产三级国产a| 91久久线看在观草草青青| 久久福利毛片| 一区二区三区高清| 欧美丝袜第一区| 亚洲一区二区三区四区中文| 欧美大片免费| 欧美高清不卡在线| 亚洲美女毛片| 一卡二卡3卡四卡高清精品视频| 欧美暴力喷水在线| 亚洲精品看片| 亚洲视频日本| 国产主播一区二区三区| 久久亚洲视频| 欧美激情一二区| 亚洲视频免费| 午夜日本精品| 亚洲区中文字幕| 亚洲欧美精品伊人久久| 在线看片日韩| 亚洲视频一区二区在线观看| 国产精品影音先锋| 欧美a级在线| 国产精品美女黄网| 美国十次了思思久久精品导航| 欧美成人蜜桃| 久久久久在线观看| 欧美精品三级日韩久久| 久久精品视频在线播放| 老司机精品导航| 欧美亚洲网站| 欧美午夜免费电影| 亚洲国产老妈| 激情久久影院| 亚洲欧美另类久久久精品2019| 亚洲美女视频| 久久久亚洲一区| 久久久亚洲国产天美传媒修理工| 欧美精品成人91久久久久久久| 欧美专区在线| 亚洲一区二区三区高清不卡| 国产在线精品成人一区二区三区| 亚洲电影免费在线观看| 激情欧美一区二区| 欧美一级播放| 麻豆精品在线视频| 狠狠色丁香婷婷综合久久片| 亚洲一区二区三区四区中文 | 1024成人| 久热精品在线| 欧美成人免费网站| 亚洲电影专区| 欧美另类视频| 亚洲一区二区三区777|