Merge branch 'devel/master' into tizen
authorJiyun Yang <ji.yang@samsung.com>
Mon, 17 Jun 2019 06:11:17 +0000 (15:11 +0900)
committerJiyun Yang <ji.yang@samsung.com>
Mon, 17 Jun 2019 06:11:17 +0000 (15:11 +0900)
dali/internal/adaptor/tizen-wayland/framework-tizen.cpp
dali/internal/adaptor/ubuntu/framework-ubuntu.cpp
dali/internal/adaptor/windows/framework-win.cpp
dali/internal/graphics/gles/gles-abstraction.h
dali/internal/graphics/gles/gles2-implementation.h
dali/internal/graphics/gles/gles3-implementation.h
dali/public-api/dali-adaptor-version.cpp
packaging/dali-adaptor.spec

index 09ee3fb..086332f 100644 (file)
@@ -818,6 +818,12 @@ std::string Framework::GetResourcePath()
   {
     resourcePath = value;
   }
+
+  if( resourcePath.back() != '/' )
+  {
+    resourcePath+="/";
+  }
+
 #endif //TIZEN_PLATFORM_CONFIG_SUPPORTED
 
   return resourcePath;
index 6588896..29abb88 100644 (file)
@@ -219,6 +219,11 @@ std::string Framework::GetResourcePath()
     resourcePath = value;
   }
 
+  if( resourcePath.back() != '/' )
+  {
+    resourcePath+="/";
+  }
+
   return resourcePath;
 }
 
index 1fe8890..9f1b827 100755 (executable)
@@ -244,6 +244,11 @@ std::string Framework::GetResourcePath()
     resourcePath = value;\r
   }\r
 \r
+  if( resourcePath.back() != '/' )\r
+  {\r
+    resourcePath+="/";\r
+  }\r
+\r
   return resourcePath;\r
 }\r
 \r
index 16f7cd2..8dc63e6 100644 (file)
@@ -32,6 +32,11 @@ class GlesAbstraction
 
 public:
 
+  /**
+   * Destructor
+   */
+  virtual ~GlesAbstraction() {};
+
   virtual void ReadBuffer( GLenum mode ) = 0;
 
   virtual void DrawRangeElements( GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid* indices ) = 0;
index 054d877..5bab59b 100644 (file)
@@ -40,7 +40,7 @@ class Gles2Implementation : public GlesAbstraction
 public:
   Gles2Implementation() {}
 
-  ~Gles2Implementation() {}
+  ~Gles2Implementation() override {}
 
   void ReadBuffer( GLenum mode ) override
   {
index fca29c8..ace3849 100644 (file)
@@ -39,7 +39,7 @@ class Gles3Implementation : public GlesAbstraction
 public:
   Gles3Implementation() {}
 
-  ~Gles3Implementation() {}
+  ~Gles3Implementation() override {}
 
   void ReadBuffer( GLenum mode ) override
   {
index c4bbe1c..f8966b5 100644 (file)
@@ -28,7 +28,7 @@ namespace Dali
 
 const unsigned int ADAPTOR_MAJOR_VERSION = 1;
 const unsigned int ADAPTOR_MINOR_VERSION = 4;
-const unsigned int ADAPTOR_MICRO_VERSION = 23;
+const unsigned int ADAPTOR_MICRO_VERSION = 24;
 const char * const ADAPTOR_BUILD_DATE    = __DATE__ " " __TIME__;
 
 #ifdef DEBUG_ENABLED
index 3abe668..35b9469 100644 (file)
@@ -17,7 +17,7 @@
 
 Name:       dali-adaptor
 Summary:    The DALi Tizen Adaptor
-Version:    1.4.23
+Version:    1.4.24
 Release:    1
 Group:      System/Libraries
 License:    Apache-2.0 and BSD-3-Clause and MIT