Update Tangram ES to 0.6.3 compiled for Tizen 4.0 with GCC 6.2 82/129582/1
authorMatt Blair <blair1618@gmail.com>
Tue, 16 May 2017 23:16:13 +0000 (19:16 -0400)
committerMatt Blair <blair1618@gmail.com>
Wed, 17 May 2017 05:12:47 +0000 (01:12 -0400)
Tangram ES built from commit 2cacd0c6ec10e5e6c0b7d0147cdf5d3853e166d6

Change-Id: I6703f3602e5abe114c2486d4fe33cdd469bfb760

lib/aarch64/libtangram.so
lib/arm/libtangram.so
lib/i586/libtangram.so
lib/x86_64/libtangram.so
src/mapzen/tangram/platform.h
src/mapzen/tangram/platform_tizen.h
src/mapzen/tangram/urlClient.h

index edfa8fc..0a0559c 100755 (executable)
Binary files a/lib/aarch64/libtangram.so and b/lib/aarch64/libtangram.so differ
index 3673727..c81a33f 100755 (executable)
Binary files a/lib/arm/libtangram.so and b/lib/arm/libtangram.so differ
index 30fef8b..128dd35 100755 (executable)
Binary files a/lib/i586/libtangram.so and b/lib/i586/libtangram.so differ
index 6fcfdb1..93efedb 100755 (executable)
Binary files a/lib/x86_64/libtangram.so and b/lib/x86_64/libtangram.so differ
index 4f2c91b..6c8ccc8 100644 (file)
@@ -6,8 +6,6 @@
 
 namespace Tangram {
 
-// Function type for a mapReady callback
-using MapReady = std::function<void(void*)>;
 
 // Function type for receiving data from a successful network request
 using UrlCallback = std::function<void(std::vector<char>&&)>;
index 1b6fb14..b8a9b59 100644 (file)
@@ -1,15 +1,3 @@
-#if 0
-#pragma once
-
-#include "platform.h"
-
-bool shouldRender();
-
-void initUrlRequests(const char* proxyAddress);
-void stopUrlRequests();
-
-#endif
-
 #pragma once
 
 #include "platform.h"
@@ -18,8 +6,6 @@ void stopUrlRequests();
 #include <functional>
 #include <Evas_GL.h>
 
-typedef struct _FcConfig    FcConfig;
-
 namespace Tangram {
 
 void setEvasGlAPI(Evas_GL_API *glApi);
@@ -56,10 +42,6 @@ protected:
     std::function<void()> m_renderCallbackFunction = nullptr;
 
     mutable bool m_update = false;
-
-    mutable std::vector<std::string> m_fallbackFonts;
-    mutable FcConfig* m_fcConfig = nullptr;
-
 };
 
 } // namespace Tangram
index 1b48c47..0eb6cb3 100644 (file)
@@ -27,7 +27,7 @@ public:
         bool canceled = false;
     };
 
-    UrlClient(Options options);
+    UrlClient(const Options& options);
     ~UrlClient();
 
     bool addRequest(const std::string& url, UrlCallback onComplete);