lottie: fix some more warning. 50/185350/1
authorsub.mohanty@samsung.com <smohantty@gmail.com>
Sat, 28 Jul 2018 08:08:32 +0000 (17:08 +0900)
committersub.mohanty@samsung.com <smohantty@gmail.com>
Sat, 28 Jul 2018 08:08:32 +0000 (17:08 +0900)
Change-Id: I0b1fe8773ec1f795e7df603a35a02687697f3e00

src/vector/vbitmap.cpp
src/vector/vmatrix.h
src/vector/vpathmesure.cpp

index c4a0190..f92c9ca 100644 (file)
@@ -205,6 +205,8 @@ VBitmap VBitmap::copy(const VRect& r) const
         }
     }
     //TODO implement properly.
+    return image;
+
 }
 
 int VBitmap::stride() const
index 3e46563..4c3be7c 100644 (file)
@@ -58,7 +58,7 @@ public:
     bool fuzzyCompare(const VMatrix &) const;
     friend std::ostream& operator<<(std::ostream& os, const VMatrix& o);
 private:
-    friend class VSpanData;
+    friend struct VSpanData;
     MatrixType mType{MatrixType::None};
     MatrixType dirty{MatrixType::None};
     float m11{1}, m12{0}, m13{0};
index 69f2788..835f0f8 100644 (file)
@@ -15,7 +15,6 @@ VPath VPathMesure::trim(const VPath &path)
    if (vCompare(startOffset, 0.0f) && (vCompare(endOffset, 1.0f))) return path;
 
    float len = path.length();
-   float len1 = len;
    float sg = len * startOffset;
    float eg = len * (1.0f - endOffset);
    len = len - (sg + eg);