| Index: src/gpu/GrBufferedDrawTarget.cpp
|
| diff --git a/src/gpu/GrBufferedDrawTarget.cpp b/src/gpu/GrBufferedDrawTarget.cpp
|
| index f2d9367905bb1a4f2b08fbc7e711330f72134cd7..21a63826cc7f62f58a6441de695a4717c13a00ad 100644
|
| --- a/src/gpu/GrBufferedDrawTarget.cpp
|
| +++ b/src/gpu/GrBufferedDrawTarget.cpp
|
| @@ -80,9 +80,9 @@ void GrBufferedDrawTarget::onDrawPaths(const GrPathProcessor* pathProc,
|
| this->recordTraceMarkersIfNecessary(cmd);
|
| }
|
|
|
| -void GrBufferedDrawTarget::onClear(const SkIRect* rect, GrColor color,
|
| - bool canIgnoreRect, GrRenderTarget* renderTarget) {
|
| - GrTargetCommands::Cmd* cmd = fCommands->recordClear(rect, color, canIgnoreRect, renderTarget);
|
| +void GrBufferedDrawTarget::onClear(const SkIRect& rect, GrColor color,
|
| + GrRenderTarget* renderTarget) {
|
| + GrTargetCommands::Cmd* cmd = fCommands->recordClear(rect, color, renderTarget);
|
| this->recordTraceMarkersIfNecessary(cmd);
|
| }
|
|
|
|
|