aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrRenderTargetContext.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gpu/GrRenderTargetContext.cpp')
-rw-r--r--src/gpu/GrRenderTargetContext.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/gpu/GrRenderTargetContext.cpp b/src/gpu/GrRenderTargetContext.cpp
index e5bda32354..a79f9d113d 100644
--- a/src/gpu/GrRenderTargetContext.cpp
+++ b/src/gpu/GrRenderTargetContext.cpp
@@ -217,20 +217,6 @@ GrOpList* GrRenderTargetContext::getOpList() {
return this->getRTOpList();
}
-void GrRenderTargetContext::drawText(const GrClip& clip, const SkPaint& skPaint,
- const SkMatrix& viewMatrix, const char text[],
- size_t byteLength, SkScalar x, SkScalar y,
- const SkIRect& clipBounds) {
- ASSERT_SINGLE_OWNER
- RETURN_IF_ABANDONED
- SkDEBUGCODE(this->validate();)
- GR_CREATE_TRACE_MARKER_CONTEXT("GrRenderTargetContext", "drawText", fContext);
-
- GrTextContext* atlasTextContext = this->drawingManager()->getTextContext();
- atlasTextContext->drawText(fContext, fTextTarget.get(), clip, skPaint, viewMatrix,
- fSurfaceProps, text, byteLength, x, y, clipBounds);
-}
-
void GrRenderTargetContext::drawPosText(const GrClip& clip, const SkPaint& paint,
const SkMatrix& viewMatrix, const char text[],
size_t byteLength, const SkScalar pos[],