minor tweaks

metadata
Wenzel Jakob 2011-09-21 15:49:40 -04:00
parent b74d6add79
commit 4c11979885
2 changed files with 5 additions and 3 deletions

View File

@ -84,6 +84,11 @@ void signalHandler(int signal) {
renderQueue->flush();
} else if (signal == SIGFPE) {
SLog(EWarn, "Caught a floating-point exception!");
#if defined(MTS_DEBUG_FP)
/* Generate a core dump! */
abort();
#endif
}
}
#endif

View File

@ -26,9 +26,6 @@
// Uncomment to enable nearest-neighbor direction interpolation
//#define VINTERP_NEAREST_NEIGHBOR
// Uncomment to enable structure tensor-based direction interpolation (better, but slow)
#define VINTERP_STRUCTURE_TENSOR
// Number of power iteration steps used to find the dominant direction
#define POWER_ITERATION_STEPS 5