summaryrefslogtreecommitdiff
path: root/graphics/nvidia-texture-tools/files/patch-src-nvmath-nvmath.h
diff options
context:
space:
mode:
authorDmitry Marakasov <amdmi3@FreeBSD.org>2016-04-21 11:01:59 +0000
committerDmitry Marakasov <amdmi3@FreeBSD.org>2016-04-21 11:01:59 +0000
commit76533f17366cac3d90151aef9f75a5f9db58b05b (patch)
tree18603b9c80ca700f62345978337a99848c9e8e17 /graphics/nvidia-texture-tools/files/patch-src-nvmath-nvmath.h
parentUse correct include dir switch in USES=tcl:tea. Adjust devel/tclreadline. (diff)
- Switch to new github home [1]
- Update WWW [1] - Regenerate patches - Add LICENSE PR: 208858 [1] Submitted by: fcsk.aim@gmail.com [1]
Notes
Notes: svn path=/head/; revision=413723
Diffstat (limited to 'graphics/nvidia-texture-tools/files/patch-src-nvmath-nvmath.h')
-rw-r--r--graphics/nvidia-texture-tools/files/patch-src-nvmath-nvmath.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/graphics/nvidia-texture-tools/files/patch-src-nvmath-nvmath.h b/graphics/nvidia-texture-tools/files/patch-src-nvmath-nvmath.h
index 6230ee1a5c8a..43b5e1b15b1c 100644
--- a/graphics/nvidia-texture-tools/files/patch-src-nvmath-nvmath.h
+++ b/graphics/nvidia-texture-tools/files/patch-src-nvmath-nvmath.h
@@ -1,6 +1,6 @@
---- src/nvmath/nvmath.h.orig 2008-12-01 11:04:28.000000000 +0300
-+++ src/nvmath/nvmath.h 2009-03-06 22:38:28.000000000 +0300
-@@ -97,7 +97,7 @@
+--- src/nvmath/nvmath.h.orig 2010-05-15 09:12:05 UTC
++++ src/nvmath/nvmath.h
+@@ -115,7 +115,7 @@ inline bool isFinite(const float f)
{
#if NV_OS_WIN32
return _finite(f) != 0;
@@ -9,7 +9,7 @@
return isfinite(f);
#elif NV_OS_LINUX
return finitef(f);
-@@ -112,7 +112,7 @@
+@@ -130,7 +130,7 @@ inline bool isNan(const float f)
{
#if NV_OS_WIN32
return _isnan(f) != 0;