summaryrefslogtreecommitdiffstats
path: root/src/angle
diff options
context:
space:
mode:
authorFrederik Gladhorn <frederik.gladhorn@digia.com>2013-10-11 16:12:21 +0200
committerFrederik Gladhorn <frederik.gladhorn@digia.com>2013-10-11 16:12:35 +0200
commitd0eb444a49f6064ecb896f62276e060cd8a4b1e8 (patch)
tree34d8dd637baf665225ada73e76604531cd2c75e5 /src/angle
parentda0cb32b8ee7cc4a991a59420a411898e63a660e (diff)
parent894f86709080fe8d20875b402adce679963c49c2 (diff)
Merge remote-tracking branch 'origin/stable' into dev
Diffstat (limited to 'src/angle')
-rw-r--r--src/angle/patches/0001-Fix-compilation-for-MSVC-2008-and-std-tuple.patch32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/angle/patches/0001-Fix-compilation-for-MSVC-2008-and-std-tuple.patch b/src/angle/patches/0001-Fix-compilation-for-MSVC-2008-and-std-tuple.patch
new file mode 100644
index 0000000000..0e72c57be6
--- /dev/null
+++ b/src/angle/patches/0001-Fix-compilation-for-MSVC-2008-and-std-tuple.patch
@@ -0,0 +1,32 @@
+From d4776adddb971642164de54141e015abde881740 Mon Sep 17 00:00:00 2001
+From: Thomas Hartmann <Thomas.Hartmann@digia.com>
+Date: Tue, 8 Oct 2013 09:46:54 +0200
+Subject: [PATCH] Fix compilation for MSVC 2008 and std::tuple
+
+For MSVC 2008 make_tuple is in the tr1 namespace.
+
+Change-Id: I4a51f6cabdf068993869b404b12ed1484a21a9d4
+---
+ .../src/libGLESv2/renderer/IndexRangeCache.cpp | 6 +++++-
+ 1 files changed, 5 insertions(+), 1 deletions(-)
+
+diff --git a/src/3rdparty/angle/src/libGLESv2/renderer/IndexRangeCache.cpp b/src/3rdparty/angle/src/libGLESv2/renderer/IndexRangeCache.cpp
+index 610a5ef..95a6961 100644
+--- a/src/3rdparty/angle/src/libGLESv2/renderer/IndexRangeCache.cpp
++++ b/src/3rdparty/angle/src/libGLESv2/renderer/IndexRangeCache.cpp
+@@ -81,7 +81,11 @@ IndexRangeCache::IndexRange::IndexRange(GLenum typ, intptr_t off, GLsizei c)
+
+ bool IndexRangeCache::IndexRange::operator<(const IndexRange& rhs) const
+ {
+- return std::make_tuple(type, offset, count) < std::make_tuple(rhs.type, rhs.offset, rhs.count);
++#if defined(_MSC_VER) && _MSC_VER < 1600
++ return std::tr1::make_tuple(type, offset, count) < std::tr1::make_tuple(rhs.type, rhs.offset, rhs.count);
++#else
++ return std::make_tuple(type, offset, count) < std::tr1::make_tuple(rhs.type, rhs.offset, rhs.count);
++#endif
+ }
+
+ IndexRangeCache::IndexBounds::IndexBounds()
+--
+1.7.6.msysgit.0
+