| Index: gm/beziereffects.cpp
|
| diff --git a/gm/beziereffects.cpp b/gm/beziereffects.cpp
|
| index 5d26be80600ca66135b35403c18bb18b206f0239..2511dec6e025a9f9d7afe2ea79256e2e54a92e1e 100644
|
| --- a/gm/beziereffects.cpp
|
| +++ b/gm/beziereffects.cpp
|
| @@ -12,7 +12,7 @@
|
|
|
| #if SK_SUPPORT_GPU
|
|
|
| -#include "GrDrawContextPriv.h"
|
| +#include "GrDrawContext.h"
|
| #include "GrContext.h"
|
| #include "GrPathUtils.h"
|
| #include "GrTest.h"
|
| @@ -226,7 +226,7 @@
|
| SkAutoTUnref<GrDrawBatch> batch(
|
| BezierCubicOrConicTestBatch::Create(gp, geometry, klmEqs, klmSigns[c]));
|
|
|
| - drawContext->drawContextPriv().testingOnly_drawBatch(pipelineBuilder, batch);
|
| + drawContext->internal_drawBatch(pipelineBuilder, batch);
|
| }
|
| ++col;
|
| if (numCols == col) {
|
| @@ -367,7 +367,7 @@
|
| SkAutoTUnref<GrDrawBatch> batch(
|
| BezierCubicOrConicTestBatch::Create(gp, geometry, klmEqs, 1.f));
|
|
|
| - drawContext->drawContextPriv().testingOnly_drawBatch(pipelineBuilder, batch);
|
| + drawContext->internal_drawBatch(pipelineBuilder, batch);
|
| }
|
| ++col;
|
| if (numCols == col) {
|
| @@ -603,7 +603,7 @@
|
| SkAutoTUnref<GrDrawBatch> batch(BezierQuadTestBatch::Create(gp, geometry,
|
| DevToUV));
|
|
|
| - drawContext->drawContextPriv().testingOnly_drawBatch(pipelineBuilder, batch);
|
| + drawContext->internal_drawBatch(pipelineBuilder, batch);
|
| }
|
| ++col;
|
| if (numCols == col) {
|
|
|