projects
/
platform
/
core
/
uifw
/
lottie-player.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7b3fd8b
)
Fix comparison
author
Johan Mattsson
<johan.mattsson@hotmail.se>
Wed, 17 Feb 2021 19:55:39 +0000
(20:55 +0100)
committer
Hermet Park
<chuneon.park@samsung.com>
Mon, 15 Mar 2021 06:05:00 +0000
(15:05 +0900)
Change-Id: I25d5d40de5ab47cb73456a240a6a436fb102c3a5
src/vector/vrle.cpp
patch
|
blob
|
history
diff --git
a/src/vector/vrle.cpp
b/src/vector/vrle.cpp
index 379f8eda072ef8ca47892891702b8859ad9997d6..051560dad6fdcb0fdeeac3c52444764ba429a33e 100644
(file)
--- a/
src/vector/vrle.cpp
+++ b/
src/vector/vrle.cpp
@@
-224,7
+224,7
@@
void VRle::Data::opGeneric(const VRle::Data &aObj, const VRle::Data &bObj,
mSpans.reserve(a.size() + b.size());
// if two rle are disjoint
- if (!aObj.bbox().intersects(
a
Obj.bbox())) {
+ if (!aObj.bbox().intersects(
b
Obj.bbox())) {
if (a.data()[0].y < b.data()[0].y) {
copy(a.data(), a.size(), mSpans);
copy(b.data(), b.size(), mSpans);