- Timestamp:
- 08/21/06 14:38:24 (18 years ago)
- Location:
- GTP/trunk/Lib/Vis/Preprocessing
- Files:
-
- 1 deleted
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Vis/Preprocessing/src/Makefile
r1217 r1248 1 1 ############################################################################# 2 2 # Makefile for building: preprocessor 3 # Generated by qmake (2.00a) (Qt 4.1.2) on: ?t 17. VIII 21:45:1420063 # Generated by qmake (2.00a) (Qt 4.1.2) on: po 21. VIII 11:15:08 2006 4 4 # Project: preprocessor.pro 5 5 # Template: app … … 78 78 C:\Qt\4.1.2\mkspecs\features\win32\stl.prf \ 79 79 C:\Qt\4.1.2\mkspecs\features\shared.prf \ 80 C:\Qt\4.1.2\mkspecs\features\qt.prf \ 81 C:\Qt\4.1.2\mkspecs\features\win32\opengl.prf \ 82 C:\Qt\4.1.2\mkspecs\features\moc.prf \ 80 83 C:\Qt\4.1.2\mkspecs\features\resources.prf \ 81 84 C:\Qt\4.1.2\mkspecs\features\uic.prf … … 96 99 C:\Qt\4.1.2\mkspecs\features\win32\stl.prf: 97 100 C:\Qt\4.1.2\mkspecs\features\shared.prf: 101 C:\Qt\4.1.2\mkspecs\features\qt.prf: 102 C:\Qt\4.1.2\mkspecs\features\win32\opengl.prf: 103 C:\Qt\4.1.2\mkspecs\features\moc.prf: 98 104 C:\Qt\4.1.2\mkspecs\features\resources.prf: 99 105 C:\Qt\4.1.2\mkspecs\features\uic.prf: … … 110 116 distclean: release-distclean debug-distclean FORCE 111 117 -$(DEL_FILE) Makefile 118 119 release-mocclean: $(MAKEFILE).Release 120 $(MAKE) -f $(MAKEFILE).Release mocclean 121 debug-mocclean: $(MAKEFILE).Debug 122 $(MAKE) -f $(MAKEFILE).Debug mocclean 123 mocclean: release-mocclean debug-mocclean 124 125 release-mocables: $(MAKEFILE).Release 126 $(MAKE) -f $(MAKEFILE).Release mocables 127 debug-mocables: $(MAKEFILE).Debug 128 $(MAKE) -f $(MAKEFILE).Debug mocables 129 mocables: release-mocables debug-mocables 112 130 FORCE: 113 131 -
GTP/trunk/Lib/Vis/Preprocessing/src/Preprocessor.vcproj
r1239 r1248 20 20 Name="VCCLCompilerTool" 21 21 Optimization="0" 22 AdditionalIncludeDirectories="..\include;..\src; "$(CG_INC_PATH)";..\..\..\..\..\..\NonGTP\Devil\include;..\..\..\..\..\..\NonGTP\Zlib\include;..\..\..\..\..\..\NonGTP\Xerces;"$(BOOST_INCLUDE)""22 AdditionalIncludeDirectories="..\include;..\src;..\..\..\..\..\..\NonGTP\Devil\include;..\..\..\..\..\..\NonGTP\Zlib\include;..\..\..\..\..\..\NonGTP\Xerces;..\..\..\..\..\..\NonGTP\Boost\include" 23 23 PreprocessorDefinitions="WIN32;_DEBUG;_LIB;" 24 24 MinimalRebuild="TRUE" … … 65 65 FavorSizeOrSpeed="0" 66 66 OptimizeForWindowsApplication="TRUE" 67 AdditionalIncludeDirectories="..\include; "$(QTDIR)\include\QtCore";"$(QTDIR)\include\QtGui";"$(QTDIR)\include";"$(QTDIR)\include\QtOpenGl";..\src;"$(CG_INC_PATH)";..\..\..\..\..\..\NonGTP\Devil\include;..\..\..\..\..\..\NonGTP\Zlib\include;..\..\..\..\..\..\NonGTP\Xerces;"$(BOOST_INCLUDE)""67 AdditionalIncludeDirectories="..\include;..\src;..\..\..\..\..\..\NonGTP\Devil\include;..\..\..\..\..\..\NonGTP\Zlib\include;..\..\..\..\..\..\NonGTP\Xerces;..\..\..\..\..\..\NonGTP\Boost" 68 68 PreprocessorDefinitions="WIN32;NDEBUG;_LIB" 69 69 ExceptionHandling="TRUE" -
GTP/trunk/Lib/Vis/Preprocessing/src/TestPreprocessor.vcproj
r1239 r1248 71 71 Name="VCCLCompilerTool" 72 72 Optimization="0" 73 AdditionalIncludeDirectories="..\include; "$(BOOST_INCLUDE)";"$(QTDIR)\include\QtOpenGl";..\src;"$(CG_INC_PATH)";..\..\..\..\..\..\NonGTP\Devil\include;..\..\..\..\..\..\NonGTP\Zlib\include;..\..\..\..\..\..\NonGTP\Xerces;..\..\MultiLevelRayTracing"73 AdditionalIncludeDirectories="..\include;..\..\..\..\..\..\NonGTP\Boost;..\..\..\..\..\..\NonGTP\Devil\include;..\..\..\..\..\..\NonGTP\Zlib\include;..\..\..\..\..\..\NonGTP\Xerces;..\..\MultiLevelRayTracing" 74 74 PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE" 75 75 RuntimeLibrary="2" … … 86 86 OutputFile="$(OutDir)/Preprocessor.exe" 87 87 LinkIncremental="1" 88 AdditionalLibraryDirectories="..\src\GL;..\lib\release; "$(BOOST_LIB)";..\..\..\..\..\..\NonGTP\Xerces\xercesc\lib;..\..\..\..\..\..\NonGTP\Zlib\lib;..\..\..\..\..\..\NonGTP\Devil\lib"88 AdditionalLibraryDirectories="..\src\GL;..\lib\release;..\..\..\..\..\..\NonGTP\Boost\lib;..\..\..\..\..\..\NonGTP\Xerces\xercesc\lib;..\..\..\..\..\..\NonGTP\Zlib\lib;..\..\..\..\..\..\NonGTP\Devil\lib" 89 89 GenerateDebugInformation="FALSE" 90 90 SubSystem="1" -
GTP/trunk/Lib/Vis/Preprocessing/src/default.env
r1199 r1248 31 31 # stored sample rays 32 32 samplesFilename rays.out 33 useGlRenderer false33 useGlRenderer true 34 34 useGlDebugger false 35 35 # type sampling -
GTP/trunk/Lib/Vis/Preprocessing/src/main.cpp
r1241 r1248 88 88 } 89 89 90 90 //rendererWidget->Show(); 91 91 } 92 92 … … 218 218 BoostPreprocessorThread pt(preprocessor); 219 219 220 bool guiSupported = false; 220 221 if (preprocessor->mUseGlRenderer || preprocessor->mUseGlDebugger) 221 {222 { 222 223 cout << "using gl widget" << endl; 223 224 // create and run the preprocessor application in a parallel thread 224 225 pt.InitThread(); 225 226 //pt.RunThread(); 227 226 228 // display the render widget 227 DisplayWidget(); 228 } 229 else 230 { 231 // just call the mail method -> will be executed in the main thread 232 pt.Main(); 229 if (!rendererWidget) 230 guiSupported = LoadMyDll(); 231 } 232 233 if (!guiSupported) { 234 preprocessor->mUseGlRenderer = false; 235 preprocessor->mUseGlDebugger = false; 236 } 237 238 if (!(preprocessor->mUseGlRenderer || preprocessor->mUseGlDebugger)) { 239 // just call the mail method -> will be executed in the main thread 240 pt.Main(); 233 241 } 234 242 235 243 Cleanup(); 236 244 237 245 return returnCode; 238 246 } -
GTP/trunk/Lib/Vis/Preprocessing/src/preprocessor.pro
r1217 r1248 1 CONFIG -= qt1 #CONFIG -= qt 2 2 CONFIG += console warn_off thread release 3 3 … … 70 70 MutualVisibility.cpp Triangle3.cpp Rectangle3.cpp Plane3.cpp Polygon3.cpp \ 71 71 ViewCell.cpp ViewCellBsp.cpp Halton.cpp VssRay.cpp VssTree.cpp VssPreprocessor.cpp \ 72 RenderSimulator.cpp RayInfo.cpp RssTree.cpp RssPreprocessor.cpp \ 72 RenderSimulator.cpp RayInfo.cpp RssTree.cpp RssPreprocessor.cpp \ 73 73 ViewCellsManager.cpp VspBspTree.cpp GlRenderer.cpp \ 74 74 PreprocessorThread.cpp Renderer.cpp Beam.cpp ViewCellsParser.cpp Tetrahedron3.cpp \ 75 75 VrmlExporter.cpp PlyParser.cpp plyfile.c RenderSampler.cpp \ 76 76 GzBinFileInputStream.cpp GzFileInputSource.cpp \ 77 VspOspTree.cpp LogManager.cpp \ 78 SamplingStrategy.cpp KdIntersectable.cpp BoostPreprocessorThread.cpp 77 LogManager.cpp \ 78 SamplingStrategy.cpp KdIntersectable.cpp BoostPreprocessorThread.cpp \ 79 OspTree.cpp HierarchyManager.cpp ObjParser.cpp VspTree.cpp BvHierarchy.cpp 80 81 79 82 80 83 CONFIG(qt) {
Note: See TracChangeset
for help on using the changeset viewer.