color::swap - add missing premultiplied_ (ref #4137)

This commit is contained in:
Artem Pavlenko 2020-04-23 17:38:50 +01:00
parent 3e178a2153
commit cb638eaabf

View file

@ -167,6 +167,7 @@ private:
std::swap(green_,rhs.green_); std::swap(green_,rhs.green_);
std::swap(blue_,rhs.blue_); std::swap(blue_,rhs.blue_);
std::swap(alpha_,rhs.alpha_); std::swap(alpha_,rhs.alpha_);
std::swap(premultiplied_, rhs.premultiplied_);
} }
}; };