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

的筆記

隨時隨地編輯

曬曬預(yù)處理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 的筆記 閱讀(1131) 評論(1)  編輯 收藏 引用

評論

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

有意思嗎?樓豬  回復(fù)  更多評論   


只有注冊用戶登錄后才能發(fā)表評論。
網(wǎng)站導(dǎo)航: 博客園   IT新聞   BlogJava   博問   Chat2DB   管理


青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <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>
            国产伦一区二区三区色一情| 欧美电影电视剧在线观看| 欧美日韩另类综合| 欧美一区二区三区视频免费播放| 亚洲高清免费| 欧美激情精品久久久久久大尺度| 久久精品网址| 久久国产精品99精品国产| 午夜免费日韩视频| 香蕉成人伊视频在线观看| 亚洲一区在线看| 日韩视频在线一区| 99精品欧美一区二区蜜桃免费| 亚洲视频免费在线| 亚洲欧美日韩在线高清直播| 一区二区亚洲| 亚洲视频中文字幕| 欧美在线亚洲| 欧美四级在线| 国产精品女主播在线观看| 国产精品免费网站| 伊人伊人伊人久久| 亚洲欧美久久久久一区二区三区| 亚洲一区观看| 欧美电影专区| 亚洲欧美在线x视频| 久久久久九九九| 欧美日韩网址| 伊人久久大香线| 亚洲私人黄色宅男| 亚洲激情在线| 久久久亚洲人| 国产精自产拍久久久久久蜜| 亚洲电影下载| 久久电影一区| 亚洲欧美日韩在线高清直播| 欧美国产日韩a欧美在线观看| 国产免费成人在线视频| 亚洲精品一区二区三区樱花| 欧美18av| 久久久777| 国模大胆一区二区三区| 欧美在线中文字幕| 亚洲夜间福利| 国产伦精品一区二区三区在线观看 | 欧美综合第一页| 免费91麻豆精品国产自产在线观看| 国产精品99久久久久久www| 久热精品视频在线| 久久精品欧美日韩| 亚洲激情av在线| 国产欧美一区视频| 亚洲小说区图片区| 伊人久久亚洲热| 亚洲精品一区二区三区不| 国产精品最新自拍| 欧美激情免费观看| 欧美日韩一区二区三区四区在线观看| 欧美一二三区在线观看| 亚洲——在线| 亚洲精品视频在线看| 午夜精品久久久| 中文在线资源观看网站视频免费不卡 | 欧美精品激情| 国产精品乱码妇女bbbb| 亚洲尤物在线| 麻豆成人精品| 一区二区三区高清| 欧美xx视频| 蜜桃av综合| 99国产一区| 国产亚洲精品久| 欧美成人日本| 亚洲一区二区视频在线| 久久琪琪电影院| 9久re热视频在线精品| 国产精品影片在线观看| 美女主播视频一区| 国产精品一区二区a| 久久久久这里只有精品| a4yy欧美一区二区三区| 久久影视精品| 在线视频亚洲欧美| 国产精品99一区| 久久久国产亚洲精品| 欧美激情 亚洲a∨综合| 国模私拍一区二区三区| 欧美激情第一页xxx| 欧美色综合网| 亚洲免费成人| 国产在线观看精品一区二区三区| 另类酷文…触手系列精品集v1小说| 在线精品在线| 99精品国产在热久久下载| 亚洲精品国产日韩| 免费成人高清视频| 久久久女女女女999久久| 国产精品免费视频观看| 亚洲一区3d动漫同人无遮挡| 亚洲欧洲精品一区二区三区 | 亚洲一区二区毛片| 久热爱精品视频线路一| 国产精品综合视频| 亚洲午夜久久久| 欧美va亚洲va香蕉在线| 欧美粗暴jizz性欧美20| 亚洲人成毛片在线播放| 欧美激情精品久久久久久免费印度 | 亚洲精品久久久久| 欧美国产精品专区| 欧美在线电影| 免费观看亚洲视频大全| 欧美一级大片在线观看| 欧美大片18| 久久精品国产99精品国产亚洲性色| 久久免费午夜影院| 性欧美暴力猛交69hd| 欧美精品一二三| 久久在精品线影院精品国产| 国产精品v欧美精品∨日韩| 欧美二区不卡| 激情六月婷婷综合| 亚洲一区二区在线| 在线一区亚洲| 欧美黄色日本| 亚洲高清久久久| 伊人夜夜躁av伊人久久| 欧美在线看片a免费观看| 性做久久久久久久免费看| 欧美日韩国产小视频在线观看| 欧美成人综合网站| 亚洲大片在线观看| 久久综合色88| 嫩草伊人久久精品少妇av杨幂| 国产亚洲欧美激情| 性做久久久久久| 久久精品人人做人人爽| 国产日产欧美精品| 亚洲欧美日韩综合国产aⅴ | 久久免费视频这里只有精品| 欧美三级电影网| 亚洲欧洲精品一区二区| 亚洲日本中文字幕| 欧美激情国产日韩| 亚洲精品视频在线播放| 正在播放欧美一区| 国产精品久久久久久久久借妻| 日韩一级大片在线| 亚洲综合视频网| 国产精品尤物福利片在线观看| 亚洲网友自拍| 久久黄色影院| 一区二区在线视频| 欧美丰满高潮xxxx喷水动漫| 亚洲茄子视频| 亚洲男人的天堂在线aⅴ视频| 国产九区一区在线| 久久精品视频在线观看| 欧美国产一区二区| 在线亚洲美日韩| 国产精品色网| 欧美在线亚洲一区| 欧美激情va永久在线播放| 亚洲精品欧美日韩专区| 欧美深夜福利| 欧美在线视频一区二区三区| 欧美激情1区2区3区| 亚洲一二三区在线观看| 国产日韩欧美精品在线| 久久婷婷人人澡人人喊人人爽| 欧美高清在线精品一区| 一区二区三区免费观看| 狠狠久久五月精品中文字幕| 麻豆九一精品爱看视频在线观看免费| 亚洲黄色影院| 欧美一区高清| 亚洲欧洲日夜超级视频| 国产精品久久久久久亚洲毛片 | 亚洲毛片在线观看| 欧美在线观看视频在线| 亚洲国产专区校园欧美| 国产精品久久久久毛片软件 | 一本久道久久综合狠狠爱| 国产欧美一级| 欧美母乳在线| 久久精品国产第一区二区三区最新章节| 欧美成人xxx| 欧美在线高清视频| 99re亚洲国产精品| 狠狠v欧美v日韩v亚洲ⅴ| 国产精品第一页第二页第三页| 久久夜色精品国产亚洲aⅴ| 亚洲一区欧美激情| 日韩视频不卡中文| 亚洲国产老妈| 欧美成人精品不卡视频在线观看| 欧美一区二区三区在线观看视频 | 免费永久网站黄欧美| 亚洲免费一级电影| 日韩一级视频免费观看在线|