Changeset 2168 for GTP/trunk/Lib/Vis/OnlineCullingCHC/OGRE
- Timestamp:
- 02/26/07 18:49:46 (18 years ago)
- Location:
- GTP/trunk/Lib/Vis/OnlineCullingCHC/OGRE/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Vis/OnlineCullingCHC/OGRE/src/OgreOcclusionCullingSceneManager.cpp
r2164 r2168 1040 1040 if (key == "VisibilityManager") 1041 1041 { 1042 * static_cast<GtpVisibility::VisibilityManager **>(val) = 1043 (GtpVisibility::VisibilityManager *)mVisibilityManager; 1044 return true; 1045 } 1046 if (key == "HierarchInterface") 1047 { 1048 * static_cast<GtpVisibility::HierarchyInterface **>(val) = 1049 (GtpVisibility::HierarchyInterface *)mHierarchyInterface; 1042 //Ogre::LogManager::getSingleton().logMessage("here77"); 1043 * static_cast<GtpVisibility::VisibilityManager **>(val) = mVisibilityManager; 1044 return true; 1045 } 1046 if (key == "HierarchyInterface") 1047 { 1048 * static_cast<GtpVisibility::HierarchyInterface **>(val) = mHierarchyInterface; 1050 1049 return true; 1051 1050 } 1052 1051 if (key == "ShowTerrain") 1053 1052 { 1054 * static_cast<bool *>(val) = (bool *)mShowTerrain;1053 * static_cast<bool *>(val) = mShowTerrain; 1055 1054 return true; 1056 1055 } 1057 1056 if (key == "UseDepthPass") 1058 1057 { 1059 * static_cast<bool *>(val) = (bool *)mUseDepthPass;1058 * static_cast<bool *>(val) = mUseDepthPass; 1060 1059 return true; 1061 1060 } 1062 1061 if (key == "FlushQueue") 1063 1062 { 1064 * static_cast<bool *>(val) = (bool *)mDeleteQueueAfterRendering;1063 * static_cast<bool *>(val) = mDeleteQueueAfterRendering; 1065 1064 return true; 1066 1065 } 1067 1066 if (key == "NormalExecution") 1068 1067 { 1069 * static_cast<bool *>(val) = (bool *)mNormalExecution;1068 * static_cast<bool *>(val) = mNormalExecution; 1070 1069 return true; 1071 1070 } -
GTP/trunk/Lib/Vis/OnlineCullingCHC/OGRE/src/OgreOcclusionQueriesQueryManager.cpp
r2066 r2168 32 32 // disable overlays, reset them later 33 33 bool overlayEnabled = mViewport->getOverlaysEnabled(); 34 34 Ogre::LogManager::getSingleton().logMessage("here020202"); 35 35 /////////// 36 36 //-- render scene with item buffer (i.e., objects with their id as color codes) … … 209 209 GtpVisibility::PatchInfoContainer *visiblePatches, 210 210 bool relativeVisibility) 211 { 211 {Ogre::LogManager::getSingleton().logMessage("here5"); 212 212 PlatformQueryManager::ComputeFromPointVisibility(point, visibleNodes, 213 213 visibleGeometry, visiblePatches, relativeVisibility); … … 216 216 // (duplicates occur if an object is on the edge of the viewport) 217 217 RemoveDuplicateNodes(visibleNodes); 218 218 Ogre::LogManager::getSingleton().logMessage("here6"); 219 219 if (mItemBufferMode != GEOMETRY_VISIBILITY) 220 220 { 221 221 RemoveDuplicateGeometry(visibleGeometry); 222 222 } 223 223 Ogre::LogManager::getSingleton().logMessage("here7"); 224 224 if (mItemBufferMode != PATCH_VISIBILITY) 225 225 { -
GTP/trunk/Lib/Vis/OnlineCullingCHC/OGRE/src/Plugin_VisibilitySceneManager.vcproj
r2130 r2168 112 112 AdditionalLibraryDirectories=""$(OGRE_PATH)\PlugIns\OctreeSceneManager\bin\$(ConfigurationName)";"$(OGRE_PATH)\OgreMain\lib\$(ConfigurationName)";"$(OGRE_PATH)\Samples\Common\CEGUIRenderer\lib";"$(OGRE_PATH)\Dependencies\lib\$(ConfigurationName)";"..\..\..\Preprocessing\lib\$(ConfigurationName)";..\..\..\..\..\..\..\NonGTP\Xerces\xercesc\lib;..\..\..\Preprocessing\src\GL;..\..\..\..\..\..\..\NonGTP\Zlib\lib;"..\..\lib\$(ConfigurationName)";"..\..\..\..\..\Lib\Vis\OnlineCullingCHC\IVReader\lib\$(ConfigurationName)";"..\..\..\..\..\Lib\Vis\OnlineCullingCHC\ObjReader\lib\$(ConfigurationName)"" 113 113 ModuleDefinitionFile="..\misc\OgreVisibilitySceneManager.def" 114 GenerateDebugInformation=" FALSE"114 GenerateDebugInformation="TRUE" 115 115 SubSystem="2" 116 116 OptimizeReferences="2"
Note: See TracChangeset
for help on using the changeset viewer.