Fix to_skia(gfx::Color) impl

This commit is contained in:
David Capello 2015-10-10 12:15:40 -03:00
parent 7a00a0bfca
commit 1d69edcced

View File

@ -24,7 +24,7 @@
namespace she {
inline SkColor to_skia(gfx::Color c) {
return SkPremultiplyARGBInline(gfx::geta(c), gfx::getr(c), gfx::getg(c), gfx::getb(c));
return SkColorSetARGBInline(gfx::geta(c), gfx::getr(c), gfx::getg(c), gfx::getb(c));
}
inline SkIRect to_skia(const gfx::Rect& rc) {