Changeset 2583 for GTP/trunk/Lib/Vis/Preprocessing/src/havran
- Timestamp:
- 01/09/08 14:29:56 (17 years ago)
- Location:
- GTP/trunk/Lib/Vis/Preprocessing/src/havran
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Vis/Preprocessing/src/havran/ktbftrav.cpp
r2582 r2583 990 990 results[i].tdist; 991 991 } // for i 992 return 0; 992 993 } 993 994 #endif … … 1338 1339 CKTBTraversal::FindNearestI(RayPacket2x2 &rp, Vector3 &boxmin, Vector3 &boxmax) 1339 1340 { 1341 1340 1342 static AxisAlignedBox3 localbox; 1341 1343 localbox.SetMin(boxmin); 1342 1344 localbox.SetMax(boxmax); 1343 1345 1346 #define USE_SIMPLE_VERSION 1 1347 1348 #if !USE_SIMPLE_VERSION 1344 1349 int m1 = _mm_movemask_ps(rp.dx4); 1345 1350 if ((m1 == 0)||(m1 == 15)) { … … 1514 1519 return; 1515 1520 }}} 1516 1521 #endif 1517 1522 // Trace ray by ray 1518 1523 SimpleRay ray; -
GTP/trunk/Lib/Vis/Preprocessing/src/havran/ktbtrav.h
r2582 r2583 311 311 } 312 312 // $$JB correction 313 virtual int FindNearestI_16oneDir(SimpleRayContainer &rays, int offset) { 314 return 0; 315 } 313 virtual int FindNearestI_16oneDir(SimpleRayContainer &rays, int offset); 314 316 315 int PrecomputeData(SimpleRayContainer &rays); 317 316 void ReverseRay(const int indexA); -
GTP/trunk/Lib/Vis/Preprocessing/src/havran/raypack.h
r2582 r2583 22 22 #include "Vector3.h" 23 23 24 // $$JB __SSE__ macro not define in _WIN32 25 //#ifdef __SSE__ 26 #if 1 24 #ifdef __SSE__ 27 25 28 26 // System headers for SSE
Note: See TracChangeset
for help on using the changeset viewer.