Index: src/gpu/GrInOrderDrawBuffer.cpp |
diff --git a/src/gpu/GrInOrderDrawBuffer.cpp b/src/gpu/GrInOrderDrawBuffer.cpp |
index 875734d8a5a78a2f74af13c77eb020da63ce93e0..9835200598d76ddadb1cd94661b8d299b24c961b 100644 |
--- a/src/gpu/GrInOrderDrawBuffer.cpp |
+++ b/src/gpu/GrInOrderDrawBuffer.cpp |
@@ -473,20 +473,20 @@ void GrInOrderDrawBuffer::Draw::execute(GrGpu* gpu) { |
if (fInfo.isIndexed()) { |
gpu->setIndexSourceToBuffer(this->indexBuffer()); |
} |
- gpu->onDraw(fInfo, fScissorState); |
+ gpu->draw(fInfo, fScissorState); |
} |
void GrInOrderDrawBuffer::StencilPath::execute(GrGpu* gpu) { |
- gpu->onStencilPath(this->path(), fScissorState, fStencilSettings); |
+ gpu->stencilPath(this->path(), fScissorState, fStencilSettings); |
} |
void GrInOrderDrawBuffer::DrawPath::execute(GrGpu* gpu) { |
- gpu->onDrawPath(this->path(), fScissorState, fStencilSettings, |
+ gpu->drawPath(this->path(), fScissorState, fStencilSettings, |
fDstCopy.texture() ? &fDstCopy : NULL); |
} |
void GrInOrderDrawBuffer::DrawPaths::execute(GrGpu* gpu) { |
- gpu->onDrawPaths(this->pathRange(), this->indices(), fCount, this->transforms(), |
+ gpu->drawPaths(this->pathRange(), this->indices(), fCount, this->transforms(), |
fTransformsType, fScissorState, fStencilSettings, |
fDstCopy.texture() ? &fDstCopy : NULL); |
} |