minor tweaks
parent
b74d6add79
commit
4c11979885
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue