vector vrle: remove a line affecting nothing.
authorHermet Park <hermetpark@gmail.com>
Fri, 4 Oct 2019 06:19:06 +0000 (15:19 +0900)
committerHermet Park <hermetpark@gmail.com>
Fri, 4 Oct 2019 06:20:08 +0000 (15:20 +0900)
Change-Id: Ib0079788720e9e6c0175c4a925e6bbd3ac9c9ec4

src/vector/vrle.cpp

index 5f165df..bda67a0 100644 (file)
@@ -152,7 +152,6 @@ void VRle::VRleData::invert()
 
 void VRle::VRleData::operator*=(uchar alpha)
 {
-    alpha &= 0xff;
     for (auto &i : mSpans) {
         i.coverage = divBy255(i.coverage * alpha);
     }