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:
110000e
)
fixed sign extension warning
author
Subhransu Mohanty
<sub.mohanty@samsung.com>
Thu, 20 Aug 2020 01:28:56 +0000
(10:28 +0900)
committer
Jongmin Lee
<jm105.lee@samsung.com>
Sun, 23 Aug 2020 21:20:53 +0000
(06:20 +0900)
src/vector/vdrawhelper.cpp
patch
|
blob
|
history
diff --git
a/src/vector/vdrawhelper.cpp
b/src/vector/vdrawhelper.cpp
index
4594ae5
..
b14146d
100644
(file)
--- a/
src/vector/vdrawhelper.cpp
+++ b/
src/vector/vdrawhelper.cpp
@@
-537,7
+537,7
@@
static inline void process_in_chunk(const VRle::Span *array, size_t size,
for (size_t i = 0; i < size; i++) {
const auto &span = array[i];
size_t len = span.len;
-
size_t
x = span.x;
+
auto
x = span.x;
while (len) {
auto l = std::min(len, buf.size());
process(buf.data(), x, span.y, l, span.coverage);