| Index: src/gpu/GrSoftwarePathRenderer.cpp
|
| diff --git a/src/gpu/GrSoftwarePathRenderer.cpp b/src/gpu/GrSoftwarePathRenderer.cpp
|
| index 31f8fc427ccd2dbc2a1315785b8d5a390edb584d..613228ebcc41c62ed02fae0dfacca69664b4d24e 100644
|
| --- a/src/gpu/GrSoftwarePathRenderer.cpp
|
| +++ b/src/gpu/GrSoftwarePathRenderer.cpp
|
| @@ -81,22 +81,22 @@ void draw_around_inv_path(GrDrawTarget* target,
|
| if (devClipBounds.fTop < devPathBounds.fTop) {
|
| rect.iset(devClipBounds.fLeft, devClipBounds.fTop,
|
| devClipBounds.fRight, devPathBounds.fTop);
|
| - target->drawBWRect(*pipelineBuilder, color, SkMatrix::I(), rect, invert);
|
| + target->drawNonAARect(*pipelineBuilder, color, SkMatrix::I(), rect, invert);
|
| }
|
| if (devClipBounds.fLeft < devPathBounds.fLeft) {
|
| rect.iset(devClipBounds.fLeft, devPathBounds.fTop,
|
| devPathBounds.fLeft, devPathBounds.fBottom);
|
| - target->drawBWRect(*pipelineBuilder, color, SkMatrix::I(), rect, invert);
|
| + target->drawNonAARect(*pipelineBuilder, color, SkMatrix::I(), rect, invert);
|
| }
|
| if (devClipBounds.fRight > devPathBounds.fRight) {
|
| rect.iset(devPathBounds.fRight, devPathBounds.fTop,
|
| devClipBounds.fRight, devPathBounds.fBottom);
|
| - target->drawBWRect(*pipelineBuilder, color, SkMatrix::I(), rect, invert);
|
| + target->drawNonAARect(*pipelineBuilder, color, SkMatrix::I(), rect, invert);
|
| }
|
| if (devClipBounds.fBottom > devPathBounds.fBottom) {
|
| rect.iset(devClipBounds.fLeft, devPathBounds.fBottom,
|
| devClipBounds.fRight, devClipBounds.fBottom);
|
| - target->drawBWRect(*pipelineBuilder, color, SkMatrix::I(), rect, invert);
|
| + target->drawNonAARect(*pipelineBuilder, color, SkMatrix::I(), rect, invert);
|
| }
|
| }
|
|
|
|
|