Changeset 2608
- Timestamp:
- 01/17/08 17:25:10 (17 years ago)
- Location:
- GTP/trunk/Lib/Vis/Preprocessing/src
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Vis/Preprocessing/src/Makefile
r2606 r2608 1 1 ############################################################################# 2 2 # Makefile for building: preprocessor 3 # Generated by qmake (2.00a) (Qt 4.1.2) on: ?t 17. I 1 5:26:5220083 # Generated by qmake (2.00a) (Qt 4.1.2) on: ?t 17. I 17:18:38 2008 4 4 # Project: preprocessor.pro 5 5 # Template: app … … 71 71 C:\Qt\4.1.2\mkspecs\features\debug_and_release.prf \ 72 72 C:\Qt\4.1.2\mkspecs\features\default_post.prf \ 73 C:\Qt\4.1.2\mkspecs\features\qt.prf \74 C:\Qt\4.1.2\mkspecs\features\win32\opengl.prf \75 C:\Qt\4.1.2\mkspecs\features\moc.prf \76 73 C:\Qt\4.1.2\mkspecs\features\win32\thread.prf \ 77 74 C:\Qt\4.1.2\mkspecs\features\warn_off.prf \ … … 92 89 C:\Qt\4.1.2\mkspecs\features\debug_and_release.prf: 93 90 C:\Qt\4.1.2\mkspecs\features\default_post.prf: 94 C:\Qt\4.1.2\mkspecs\features\qt.prf:95 C:\Qt\4.1.2\mkspecs\features\win32\opengl.prf:96 C:\Qt\4.1.2\mkspecs\features\moc.prf:97 91 C:\Qt\4.1.2\mkspecs\features\win32\thread.prf: 98 92 C:\Qt\4.1.2\mkspecs\features\warn_off.prf: … … 116 110 distclean: release-distclean debug-distclean FORCE 117 111 -$(DEL_FILE) Makefile 118 119 release-mocclean: $(MAKEFILE).Release120 $(MAKE) -f $(MAKEFILE).Release mocclean121 debug-mocclean: $(MAKEFILE).Debug122 $(MAKE) -f $(MAKEFILE).Debug mocclean123 mocclean: release-mocclean debug-mocclean124 125 release-mocables: $(MAKEFILE).Release126 $(MAKE) -f $(MAKEFILE).Release mocables127 debug-mocables: $(MAKEFILE).Debug128 $(MAKE) -f $(MAKEFILE).Debug mocables129 mocables: release-mocables debug-mocables130 112 FORCE: 131 113 -
GTP/trunk/Lib/Vis/Preprocessing/src/QtInterface/QtPreprocessorThread.h
r1947 r2608 2 2 #define __QT_PREPROCESSOR_THREAD_H 3 3 4 //#ifdef USE_QT4 #ifdef USE_QT 5 5 6 6 #include <QThread> … … 35 35 } 36 36 37 //#endif38 37 #endif 38 #endif -
GTP/trunk/Lib/Vis/Preprocessing/src/SG08/run_test_pompeii
r2607 r2608 1 #! /bin/sh1 #!sh 2 2 3 3 … … 16 16 VIEWCELLS=../data/Pompeii/pompeii_big-seq-viewcells.xml.gz 17 17 18 PREFIX=../work/plots/osp-pompeii-SG08 a18 PREFIX=../work/plots/osp-pompeii-SG08dummy 19 19 20 20 -
GTP/trunk/Lib/Vis/Preprocessing/src/SG08/run_test_powerplant
r2607 r2608 1 #! /bin/sh1 #!sh 2 2 3 3 #COMMAND="./release/preprocessor.exe -preprocessor_quit_on_finish+" 4 COMMAND="../scripts/preprocessor.sh -preprocessor_quit_on_finish+ -preprocessor_use_gl_renderer- -preprocessor_evaluate_filter- -preprocessor_detect_empty_viewspace+ -total_samples=500000000 "4 COMMAND="../scripts/preprocessor.sh -preprocessor_quit_on_finish+ -preprocessor_use_gl_renderer- -preprocessor_evaluate_filter- -preprocessor_detect_empty_viewspace+ -total_samples=500000000 -view_cells_use_kd_pvs+ -af_use_kd_pvs+" 5 5 6 6 … … 8 8 VIEWCELLS=../data/PowerPlant/powerplant-seq-viewcells.xml.gz 9 9 10 PREFIX=../work/plots/osp-powerplant-1e5 11 10 PREFIX=../work/plots/osp-powerplant-SG08 12 11 13 12 -
GTP/trunk/Lib/Vis/Preprocessing/src/default.env
r2606 r2608 526 526 #maxDepthAllowed 22 527 527 #maxListLength 6 528 } 529 528 # For Power plant 529 #maxDepthAllowed 8 530 #maxListLength 10 531 } 532 -
GTP/trunk/Lib/Vis/Preprocessing/src/havran/configh.h
r2602 r2608 13 13 #ifndef __CONFIGH_H__ 14 14 #define __CONFIGH_H__ 15 16 #if defined(_MSC_VER) 17 // use perftimer only on msvc 18 // define __SSE__ macro as it is not defined under MSVC 19 #define __SSE__ 20 // If we support the use of SSE instructions for ray shooting 21 #define _USE_HAVRAN_SSE 22 #endif 15 23 16 24 #ifndef USE_GOLEM_NAMESPACE -
GTP/trunk/Lib/Vis/Preprocessing/src/havran/ktball.cpp
r2603 r2608 424 424 425 425 void 426 CKTB::FindNearestI(RayPacket2x2 &raypack, Vector3 &boxmin, Vector3 &boxmax) 426 CKTB::FindNearestI(RayPacket2x2 &raypack, 427 const Vector3 &boxmin, 428 const Vector3 &boxmax) 427 429 { 428 430 if (!makeMinBoxes) -
GTP/trunk/Lib/Vis/Preprocessing/src/havran/ktball.h
r2602 r2608 16 16 // GOLEM headers 17 17 #include "configh.h" 18 #include "ktbconf.h" 18 19 //#include "ktbi.h" 19 20 #include "ktbai.h" -
GTP/trunk/Lib/Vis/Preprocessing/src/havran/ktbconf.h
r2603 r2608 23 23 #endif 24 24 25 // If we support the use of SSE instructions for ray shooting26 // #define _USE_HAVRAN_SSE27 25 28 26 namespace GtpVisibilityPreprocessor { -
GTP/trunk/Lib/Vis/Preprocessing/src/havran/ktbf2trv.cpp
r2595 r2608 413 413 // This code allows to specify the box where the ray should be traversed! 414 414 void 415 CKTBTraversal::FindNearestI(RayPacket2x2 &rp, Vector3 &boxmin, Vector3 &boxmax) 415 CKTBTraversal::FindNearestI(RayPacket2x2 &rp, 416 const Vector3 &boxmin, 417 const Vector3 &boxmax) 416 418 { 417 419 static AxisAlignedBox3 localbox; -
GTP/trunk/Lib/Vis/Preprocessing/src/main.cpp
r2603 r2608 173 173 } 174 174 175 175 176 Environment::GetSingleton()->GetStringValue("Scene.filename", buff); 176 177 string filename(buff); -
GTP/trunk/Lib/Vis/Preprocessing/src/preprocessor.pro
r2602 r2608 5 5 TEMPLATE = app 6 6 7 #CONFIG -= qt7 CONFIG -= qt 8 8 9 9 TARGET = preprocessor
Note: See TracChangeset
for help on using the changeset viewer.