aboutsummaryrefslogtreecommitdiffhomepage
path: root/gm/beziereffects.cpp
diff options
context:
space:
mode:
authorGravatar robertphillips <robertphillips@google.com>2016-03-02 08:43:13 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2016-03-02 08:43:13 -0800
commit86c60758e9e4f9e203d7462cb22b2a245a0f51bd (patch)
tree0cc77d90e91bf61a381878afbdce7022b89524ff /gm/beziereffects.cpp
parent46b301d2222b60dd5ab495b917dea163e8be94ef (diff)
Begin weaning GrClipMaskManager off of GrDrawTarget (take 2)
Diffstat (limited to 'gm/beziereffects.cpp')
-rw-r--r--gm/beziereffects.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/gm/beziereffects.cpp b/gm/beziereffects.cpp
index 2511dec6e0..5d26be8060 100644
--- a/gm/beziereffects.cpp
+++ b/gm/beziereffects.cpp
@@ -12,7 +12,7 @@
#if SK_SUPPORT_GPU
-#include "GrDrawContext.h"
+#include "GrDrawContextPriv.h"
#include "GrContext.h"
#include "GrPathUtils.h"
#include "GrTest.h"
@@ -226,7 +226,7 @@ protected:
SkAutoTUnref<GrDrawBatch> batch(
BezierCubicOrConicTestBatch::Create(gp, geometry, klmEqs, klmSigns[c]));
- drawContext->internal_drawBatch(pipelineBuilder, batch);
+ drawContext->drawContextPriv().testingOnly_drawBatch(pipelineBuilder, batch);
}
++col;
if (numCols == col) {
@@ -367,7 +367,7 @@ protected:
SkAutoTUnref<GrDrawBatch> batch(
BezierCubicOrConicTestBatch::Create(gp, geometry, klmEqs, 1.f));
- drawContext->internal_drawBatch(pipelineBuilder, batch);
+ drawContext->drawContextPriv().testingOnly_drawBatch(pipelineBuilder, batch);
}
++col;
if (numCols == col) {
@@ -603,7 +603,7 @@ protected:
SkAutoTUnref<GrDrawBatch> batch(BezierQuadTestBatch::Create(gp, geometry,
DevToUV));
- drawContext->internal_drawBatch(pipelineBuilder, batch);
+ drawContext->drawContextPriv().testingOnly_drawBatch(pipelineBuilder, batch);
}
++col;
if (numCols == col) {