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

的筆記

隨時隨地編輯

曬曬預處理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好男人在线观看| 欧美一级黄色录像| 久久人人精品| 亚洲人成亚洲人成在线观看图片 | 欧美 日韩 国产精品免费观看| 久久精品一区二区三区中文字幕| 久久久亚洲影院你懂的| 欧美精品日韩一区| 国产精品一区二区在线观看网站| 狠狠狠色丁香婷婷综合久久五月 | 亚洲综合色网站| 久久看片网站| 亚洲精品中文字幕有码专区| 亚洲夜间福利| 老司机精品久久| 国产精品二区三区四区| 国内精品久久久久影院优| 在线一区二区三区做爰视频网站| 亚洲福利在线看| 一本久久综合亚洲鲁鲁| 久久成人人人人精品欧| 欧美理论大片| 狠狠色丁香婷婷综合影院| 日韩午夜电影av| 久久午夜国产精品| 亚洲天堂成人在线视频| 欧美成人自拍| 激情久久久久久| 午夜精品国产更新| 91久久国产综合久久蜜月精品| 亚洲欧美日韩人成在线播放| 欧美黄网免费在线观看| 精品成人一区二区| 欧美一区二区三区在线观看视频| 亚洲国产精品精华液2区45| 亚洲欧美日韩一区二区三区在线观看 | 国产一级一区二区| 亚洲一区在线视频| 亚洲精品影视在线观看| 久久亚洲私人国产精品va媚药| 国产精品免费看| 国产精品99久久不卡二区| 欧美激情日韩| 美女主播一区| 亚洲国产成人av| 美女网站久久| 久久久精品国产一区二区三区 | 国产精品五区| 亚洲一区二区四区| 亚洲日本成人在线观看| 欧美69wwwcom| 亚洲人永久免费| 亚洲国产黄色片| 欧美精品大片| 亚洲视频视频在线| 亚洲视频在线观看三级| 国产精品sss| 午夜在线精品偷拍| 午夜日本精品| 影音国产精品| 亚洲第一区中文99精品| 美国三级日本三级久久99| 亚洲激情在线观看| 亚洲裸体在线观看| 国产精品激情电影| 久久久97精品| 免费在线视频一区| 亚洲深爱激情| 国产一区清纯| 国产精品久久久久999| 亚洲欧美资源在线| 欧美一区二区精品在线| 国产亚洲精品综合一区91| 久久尤物视频| 欧美激情在线有限公司| 亚洲午夜视频在线| 香蕉久久精品日日躁夜夜躁| 国模精品一区二区三区| 欧美成人精品一区二区| 欧美日韩国产a| 欧美一区视频在线| 浪潮色综合久久天堂| 一区二区欧美精品| 欧美亚洲一区二区在线| 亚洲国产精品一区二区尤物区| 亚洲日本中文字幕免费在线不卡| 国产精品v欧美精品v日本精品动漫| 欧美影院成年免费版| 老司机一区二区三区| 亚洲一区二区高清| 久久久久久一区| 亚洲视频欧美在线| 久久一日本道色综合久久| 一区二区三区免费观看| 欧美一区网站| 一区二区三区日韩精品| 久久精品免费| 亚洲女与黑人做爰| 蜜臀av一级做a爰片久久| 亚洲欧美成人网| 久久午夜精品一区二区| 亚洲一级在线观看| 麻豆成人小视频| 午夜精品久久久久影视| 欧美国产日韩精品| 久久综合九九| 国产精品视频免费| 亚洲国产精品一区制服丝袜| 国产亚洲精品资源在线26u| 日韩视频在线一区二区| 亚洲激情视频网站| 久久高清福利视频| 性欧美video另类hd性玩具| 欧美黄色成人网| 欧美激情五月| 亚洲电影专区| 久久蜜桃资源一区二区老牛| 久久精品中文字幕免费mv| 国产精品国产精品国产专区不蜜| 亚洲成在人线av| 亚洲国产精品成人综合色在线婷婷| 午夜精品在线| 久久成人这里只有精品| 国产精品美女主播| 亚洲视频电影图片偷拍一区| 一本久久综合亚洲鲁鲁| 欧美二区在线观看| 欧美电影在线| 最新亚洲电影| 欧美激情一区二区三区蜜桃视频 | 日韩一区二区免费高清| 99成人免费视频| 欧美精品偷拍| 欧美一级视频精品观看| 亚洲第一福利社区| 久久免费国产精品| 久久精品网址| 国产综合一区二区| 久久精品视频一| 欧美成人69av| 日韩特黄影片| 国产精品v欧美精品v日本精品动漫| 一区二区国产精品| 性欧美精品高清| 黄色日韩网站| 欧美成人自拍| 亚洲在线网站| 久久综合网络一区二区| 亚洲国产欧美一区| 欧美日韩精品伦理作品在线免费观看| 亚洲作爱视频| 久久久精品日韩欧美| 亚洲国产乱码最新视频| 欧美高清视频免费观看| 在线视频亚洲欧美| 久久精品国产2020观看福利| 一区在线播放| 欧美三区在线视频| 欧美在线播放高清精品| 亚洲国产精品久久久久秋霞不卡| 日韩西西人体444www| 国产精品国产三级国产aⅴ入口| 午夜精品一区二区在线观看| 欧美不卡一卡二卡免费版| 日韩视频在线一区| 国产午夜精品在线观看| 欧美成人黄色小视频| 亚洲一区精品电影| 欧美成人免费网站| 欧美一区二区三区电影在线观看| 揄拍成人国产精品视频| 欧美日韩在线观看一区二区三区| 欧美亚洲综合网| 亚洲精品日韩欧美| 久久亚裔精品欧美| 亚洲欧美www| 亚洲裸体俱乐部裸体舞表演av| 国产精品美女久久福利网站| 猛男gaygay欧美视频| 午夜电影亚洲| 99热这里只有精品8| 麻豆91精品| 欧美一区二区视频免费观看| 亚洲美女尤物影院| **网站欧美大片在线观看| 国产精品入口夜色视频大尺度| 欧美高清成人| 久热re这里精品视频在线6| 亚洲欧美激情四射在线日 | 亚洲国产日韩欧美一区二区三区| 国产精品a久久久久| 欧美黄色aaaa| 欧美成人免费在线| 久久色在线观看|