• R/O
  • SSH

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revision9acd6c13646b6dd9827d2967eb21200dc57c2f35 (tree)
Time2024-07-05 21:36:49
Authorsebastian_bugiu
Commitersebastian_bugiu

Log Message

Added forgotten USE_PCZs.

Change Summary

Incremental Difference

diff -r 9b5c586fef4f -r 9acd6c13646b OgreMain/src/OgreRoot.cpp
--- a/OgreMain/src/OgreRoot.cpp Fri Jul 05 12:45:51 2024 +0200
+++ b/OgreMain/src/OgreRoot.cpp Fri Jul 05 14:36:49 2024 +0200
@@ -114,7 +114,11 @@
114114 #elif (OGRE_PLATFORM == OGRE_PLATFORM_WIN32)
115115 //#include "RenderSystems/GL3Plus/include/OgreGL3PlusRenderSystem.h"
116116 #include "RenderSystems/Direct3D11/include/OgreD3D11RenderSystem.h"
117+
118+#ifdef USE_PCZ
117119 #include "PlugIns/PCZSceneManager/include/OgrePCZPlugin.h"
120+#endif
121+
118122 #elif OGRE_PLATFORM == OGRE_PLATFORM_APPLE_IOS
119123 //#include "../../../RenderSystems/Metal/include/OgreMetalRenderSystem.h"
120124 #include "../../../RenderSystems/Metal/include/OgreMetalPlugin.h"
@@ -315,8 +319,11 @@
315319 #if (OGRE_PLATFORM == OGRE_PLATFORM_ANDROID)
316320 GLES3RenderSystem *renderSystem = OGRE_NEW GLES3RenderSystem();
317321 #elif (OGRE_PLATFORM == OGRE_PLATFORM_WIN32)
322+
323+#ifdef USE_PCZ
318324 PCZPlugin *pcz = OGRE_NEW PCZPlugin();
319325 installPlugin(pcz);
326+#endif
320327
321328 // GL3PlusRenderSystem *renderSystem = OGRE_NEW GL3PlusRenderSystem();
322329 D3D11RenderSystem *renderSystem = OGRE_NEW D3D11RenderSystem();