Use SrcOver mode in SkiaSurface::fillRect()

This commit is contained in:
David Capello 2015-05-22 11:02:17 -03:00
parent b44c4f8b7b
commit 3674399d0b

View File

@ -242,6 +242,7 @@ public:
SkPaint paint;
paint.setColor(to_skia(color));
paint.setStyle(SkPaint::kFill_Style);
paint.setXfermodeMode(SkXfermode::kSrcOver_Mode);
m_canvas->drawRect(to_skia(rc), paint);
}