summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/querymatrix.c
diff options
context:
space:
mode:
authorScott Graham <scott.freedesktop@h4ck3r.net>2013-10-22 08:37:44 -0600
committerBrian Paul <brianp@vmware.com>2013-10-22 08:39:40 -0600
commitdafa97fed9c99e0d0c783d913717229378b575da (patch)
treed05055b7954f9454880d9abf9df3b85bc9136131 /src/mesa/main/querymatrix.c
parent65ee044a97ef983cde8ccd9d71f9444cecb36f5c (diff)
downloadexternal_mesa3d-dafa97fed9c99e0d0c783d913717229378b575da.zip
external_mesa3d-dafa97fed9c99e0d0c783d913717229378b575da.tar.gz
external_mesa3d-dafa97fed9c99e0d0c783d913717229378b575da.tar.bz2
mesa: fixes for MSVC 2013
Cc: "9.2" <mesa-stable@lists.freedesktop.org> Reviewed-by: Brian Paul <brianp@vmware.com>
Diffstat (limited to 'src/mesa/main/querymatrix.c')
-rw-r--r--src/mesa/main/querymatrix.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/main/querymatrix.c b/src/mesa/main/querymatrix.c
index aee8aef..19a8e92 100644
--- a/src/mesa/main/querymatrix.c
+++ b/src/mesa/main/querymatrix.c
@@ -38,6 +38,7 @@
#define FLOAT_TO_FIXED(x) ((GLfixed) ((x) * 65536.0))
#if defined(_MSC_VER)
+#if _MSC_VER < 1800 /* Not required on VS2013 and above. */
/* Oddly, the fpclassify() function doesn't exist in such a form
* on MSVC. This is an implementation using slightly different
* lower-level Windows functions.
@@ -70,6 +71,7 @@ fpclassify(double x)
return FP_NAN;
}
}
+#endif /* _MSC_VER < 1800 */
#elif defined(__APPLE__) || defined(__CYGWIN__) || defined(__FreeBSD__) || \
defined(__OpenBSD__) || defined(__NetBSD__) || defined(__DragonFly__) || \