diff options
author | Sebastian Rasmussen <sebras@hotmail.com> | 2010-04-14 23:57:41 +0200 |
---|---|---|
committer | Sebastian Rasmussen <sebras@hotmail.com> | 2010-04-14 23:57:41 +0200 |
commit | 5cf24d751921f4af021550dcc81b621a6fcb0a19 (patch) | |
tree | db657e394d5ca56ddd36ad3f1ce8ab90852e10d2 /fitz | |
parent | 1eb85415e888d1e31f528ecf92d726ee1b3f5d3f (diff) | |
download | mupdf-5cf24d751921f4af021550dcc81b621a6fcb0a19.tar.xz |
Remove test for NaN in shademesh rendering since it no longer appears.
The following patch is removed:
Wed, 09 Apr 2008 17:00:18 glenn.kennard@gmail.com
Check for NaN in fz_rendershade.
Fixes crash rendering chinesopera.pdf
Since the patch below makes NaN not appear:
Sun, 20 Apr 2008 01:15:15 sebras@hotmail.com
Axial shadings with no length should not extend, and the same position on the axis may be used for the entire mesh.
Diffstat (limited to 'fitz')
-rw-r--r-- | fitz/fitz_base.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/fitz/fitz_base.h b/fitz/fitz_base.h index ffcf630c..0048f489 100644 --- a/fitz/fitz_base.h +++ b/fitz/fitz_base.h @@ -51,10 +51,6 @@ extern int gettimeofday(struct timeval *tv, struct timezone *tz); #define vsnprintf _vsnprintf #endif -#ifndef isnan -#define isnan _isnan -#endif - #else /* C99 or close enough */ #include <unistd.h> |