- Timestamp:
- 04/22/08 03:06:25 (17 years ago)
- Location:
- GTP/trunk/Lib/Vis/Preprocessing/src
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Vis/Preprocessing/src/QtInterface/QtGlRenderer.h
r2656 r2657 49 49 50 50 51 class __declspec(dllexport)QtGlRendererBuffer51 class QtGlRendererBuffer 52 52 : public QObject, public QGLPixelBuffer, public GlRendererBuffer 53 53 { … … 87 87 88 88 89 class __declspec(dllexport)QtRendererControlWidget : public QWidget89 class QtRendererControlWidget : public QWidget 90 90 { 91 91 Q_OBJECT … … 170 170 171 171 172 class __declspec(dllexport)QtGlRendererWidget: public QGLWidget, public GlRendererWidget172 class QtGlRendererWidget: public QGLWidget, public GlRendererWidget 173 173 { 174 174 Q_OBJECT … … 569 569 570 570 571 class __declspec(dllexport)QtGlDebuggerWidget: public QGLWidget571 class QtGlDebuggerWidget: public QGLWidget 572 572 { 573 573 Q_OBJECT -
GTP/trunk/Lib/Vis/Preprocessing/src/QtInterface/QtGlViewer.h
r2656 r2657 13 13 14 14 15 class __declspec(dllexport)QtGlViewer : public QGLWidget15 class QtGlViewer : public QGLWidget 16 16 { 17 17 //Q_OBJECT -
GTP/trunk/Lib/Vis/Preprocessing/src/QtInterface/QtInterface05.vcproj
r2656 r2657 103 103 <Tool 104 104 Name="VCCLCompilerTool" 105 WholeProgramOptimization=" false"105 WholeProgramOptimization="true" 106 106 AdditionalIncludeDirectories="..\src;..\..\src\;..\..\..\..\..\..\..\NonGTP\Zlib\include;"$(QTDIR)\include\QtOpenGL";"$(QTDIR)\include\Qt";"$(QTDIR)\include\QtGui";"$(QTDIR)\include\QtCore";"$(QTDIR)\include";"$(CG_INC_PATH)"" 107 107 PreprocessorDefinitions="WIN32;NDEBUG;_LIB;GTP_INTERNAL;USE_QT;USE_VERBOSE_PVS;USE_CG" … … 163 163 <File 164 164 RelativePath="QtGlRenderer.cpp" 165 >166 </File>167 <File168 RelativePath="QtGlRendererDll.cpp"169 165 > 170 166 </File> -
GTP/trunk/Lib/Vis/Preprocessing/src/QtInterface/QtPreprocessorThread.h
r2656 r2657 11 11 class Preprocessor; 12 12 13 class __declspec(dllexport) QtPreprocessorThread: public PreprocessorThread, public QThread13 class QtPreprocessorThread: public PreprocessorThread, public QThread 14 14 { 15 15 public: -
GTP/trunk/Lib/Vis/Preprocessing/src/TestPreprocessor05.vcproj
r2656 r2657 123 123 Name="VCCLCompilerTool" 124 124 Optimization="2" 125 InlineFunctionExpansion=" 2"125 InlineFunctionExpansion="0" 126 126 EnableIntrinsicFunctions="false" 127 127 FavorSizeOrSpeed="1" 128 OmitFramePointers=" true"129 EnableFiberSafeOptimizations=" true"130 WholeProgramOptimization=" false"128 OmitFramePointers="false" 129 EnableFiberSafeOptimizations="false" 130 WholeProgramOptimization="true" 131 131 AdditionalIncludeDirectories="..\src;..\include;..\..\..\..\..\..\NonGTP\Boost;..\..\..\..\..\..\NonGTP\Devil\include;..\..\..\..\..\..\NonGTP\Zlib\include;..\..\..\..\..\..\NonGTP\Xerces;"$(QTDIR)\include\QtOpenGl";"$(QTDIR)\include\Qt";"$(QTDIR)\include\QtCore";"$(QTDIR)\include";QtInterface;..\src\sparsehash\src\;..\src\ootl\src\include\ootl;..\src\ootl\src\include\ootl\sandbox;$(NOINHERIT)" 132 132 PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE;GTP_INTERNAL;USE_QT;USE_CG;USE_VERBOSE_PVS" … … 157 157 LinkIncremental="1" 158 158 AdditionalLibraryDirectories=""$(QTDIR)\lib";..\src\GL;"..\..\lib05\$(ConfigurationName)";..\..\..\..\..\..\NonGTP\Boost\lib;..\..\..\..\..\..\NonGTP\Xerces\xercesc\lib;..\..\..\..\..\..\NonGTP\Zlib\lib;..\..\..\..\..\..\NonGTP\Devil\lib;"..\MultiLevelRayTracing\RTScene\$(ConfigurationName)";"..\MultiLevelRayTracing\RTWorld\$(ConfigurationName)";"QtInterface\$(ConfigurationName)";"$(CG_LIB_PATH)"" 159 GenerateDebugInformation=" false"159 GenerateDebugInformation="true" 160 160 SubSystem="1" 161 161 LargeAddressAware="2" -
GTP/trunk/Lib/Vis/Preprocessing/src/main.cpp
r2647 r2657 28 28 #include "ViewCellsManager.h" 29 29 30 //#include "testrt.h"31 32 30 33 31 #ifdef USE_QT … … 141 139 return 0; 142 140 #endif 143 141 cout<<"hello world"<<endl; 144 142 int returnCode = 0; 145 143
Note: See TracChangeset
for help on using the changeset viewer.