aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/effects/GrDashingEffect.cpp
diff options
context:
space:
mode:
authorGravatar bsalomon <bsalomon@google.com>2015-05-07 11:35:55 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-05-07 11:35:55 -0700
commite64eb570a5b9480bc24d0656ccabcff1ab13a229 (patch)
tree63b3e4e6bb0533a35f33b00a65e77c37d638c00a /src/gpu/effects/GrDashingEffect.cpp
parent3b58d75170508567436cce259384d336949407d4 (diff)
Iterate over instanced draws in GrGpu rather than above GrBatchTarget
Diffstat (limited to 'src/gpu/effects/GrDashingEffect.cpp')
-rw-r--r--src/gpu/effects/GrDashingEffect.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpu/effects/GrDashingEffect.cpp b/src/gpu/effects/GrDashingEffect.cpp
index e5fb218d7b..bd2997cdf3 100644
--- a/src/gpu/effects/GrDashingEffect.cpp
+++ b/src/gpu/effects/GrDashingEffect.cpp
@@ -599,7 +599,7 @@ public:
rectIndex++;
}
SkASSERT(0 == (curVIdx % 4) && (curVIdx / 4) == totalRectCount);
- helper.issueDraws(batchTarget);
+ helper.issueDraw(batchTarget);
}
SkSTArray<1, Geometry, true>* geoData() { return &fGeoData; }