зеркало из https://github.com/mozilla/moz-skia.git
fast return if no part of the paint gets replaced
git-svn-id: http://skia.googlecode.com/svn/trunk@1088 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
Родитель
9283b583ab
Коммит
3c1225bee4
|
@ -35,6 +35,9 @@ void SkLayerDrawLooper::init(SkCanvas* canvas) {
|
|||
|
||||
void SkLayerDrawLooper::ApplyBits(SkPaint* dst, const SkPaint& src,
|
||||
BitFlags bits) {
|
||||
if (0 == bits) {
|
||||
return;
|
||||
}
|
||||
if (kEntirePaint_Bits == bits) {
|
||||
*dst = src;
|
||||
return;
|
||||
|
|
Загрузка…
Ссылка в новой задаче