Manta Interactive Ray Tracer Development Mailing List

Text archives Help


[MANTA] r1131 - in trunk: Interface StandAlone


Chronological Thread 
  • From: knolla@sci.utah.edu
  • To: manta@sci.utah.edu
  • Subject: [MANTA] r1131 - in trunk: Interface StandAlone
  • Date: Fri, 30 Jun 2006 12:12:32 -0600 (MDT)

Author: knolla
Date: Fri Jun 30 12:12:31 2006
New Revision: 1131

Modified:
   trunk/Interface/RayPacket.h
   trunk/StandAlone/octvol_build.cc
Log:
Fixed bug in RayPacket::SSE_MaxSize; also bug in octvol_build

Modified: trunk/Interface/RayPacket.h
==============================================================================
--- trunk/Interface/RayPacket.h (original)
+++ trunk/Interface/RayPacket.h Fri Jun 30 12:12:31 2006
@@ -32,7 +32,7 @@
       MaxScratchpadSize = SCRATCHPAD_MAXSIZE,
       MaxSize              = RAYPACKET_MAXSIZE,
 #ifdef MANTA_SSE      
-      SSE_MaxSize   = RAYPACKET_MAXSIZE/4,
+      SSE_MaxSize   = (RAYPACKET_MAXSIZE+3)/4,
 #endif      
     };
     RayPacketData()

Modified: trunk/StandAlone/octvol_build.cc
==============================================================================
--- trunk/StandAlone/octvol_build.cc    (original)
+++ trunk/StandAlone/octvol_build.cc    Fri Jun 30 12:12:31 2006
@@ -84,7 +84,7 @@
                                throw IllegalArgument("octisovol -isomin 
<isomin>", i, args);
                }           
                else if (args[i] == "-isomax") {
-                       if (!getDoubleArg(i, args, isomin))
+                       if (!getDoubleArg(i, args, isomax))
                                throw IllegalArgument("octisovol -isomax 
<isomax>", i, args);
                }           
                else {




  • [MANTA] r1131 - in trunk: Interface StandAlone, knolla, 06/30/2006

Archive powered by MHonArc 2.6.16.

Top of page