summaryrefslogtreecommitdiffstats
path: root/src/angle/patches/0001-Fix-compilation-for-MSVC-2008-and-std-tuple.patch
blob: f2252540eb03c906fd381ce943c1a2dacd0eecd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
From 3ea314039783d2e6e558cb10aa86dbf278631eef Mon Sep 17 00:00:00 2001
From: Thomas Hartmann <Thomas.Hartmann@digia.com>
Date: Tue, 16 Sep 2014 23:24:24 +0300
Subject: [PATCH 01/16] Fix compilation for MSVC 2008 and std::tuple

For MSVC 2008 make_tuple is in the tr1 namespace.

Change-Id: I4a51f6cabdf068993869b404b12ed1484a21a9d4
---
 src/3rdparty/angle/src/libGLESv2/renderer/IndexRangeCache.cpp | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/3rdparty/angle/src/libGLESv2/renderer/IndexRangeCache.cpp b/src/3rdparty/angle/src/libGLESv2/renderer/IndexRangeCache.cpp
index d472e14..f68ac38 100644
--- a/src/3rdparty/angle/src/libGLESv2/renderer/IndexRangeCache.cpp
+++ b/src/3rdparty/angle/src/libGLESv2/renderer/IndexRangeCache.cpp
@@ -111,7 +111,11 @@ IndexRangeCache::IndexRange::IndexRange(GLenum typ, intptr_t off, GLsizei c)
 
 bool IndexRangeCache::IndexRange::operator<(const IndexRange& rhs) const
 {
+#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::make_tuple(rhs.type, rhs.offset, rhs.count);
+#endif
 }
 
 IndexRangeCache::IndexBounds::IndexBounds()
-- 
1.9.0.msysgit.0