aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/batches/GrNonAAFillRectPerspectiveBatch.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gpu/batches/GrNonAAFillRectPerspectiveBatch.cpp')
-rw-r--r--src/gpu/batches/GrNonAAFillRectPerspectiveBatch.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gpu/batches/GrNonAAFillRectPerspectiveBatch.cpp b/src/gpu/batches/GrNonAAFillRectPerspectiveBatch.cpp
index aa5a4203cf..0652580aa2 100644
--- a/src/gpu/batches/GrNonAAFillRectPerspectiveBatch.cpp
+++ b/src/gpu/batches/GrNonAAFillRectPerspectiveBatch.cpp
@@ -162,10 +162,10 @@ private:
size_t vertexStride = gp->getVertexStride();
int instanceCount = fRects.count();
- SkAutoTUnref<const GrBuffer> indexBuffer(target->resourceProvider()->refQuadIndexBuffer());
+ sk_sp<const GrBuffer> indexBuffer(target->resourceProvider()->refQuadIndexBuffer());
InstancedHelper helper;
void* vertices = helper.init(target, kTriangles_GrPrimitiveType, vertexStride,
- indexBuffer, kVertsPerInstance,
+ indexBuffer.get(), kVertsPerInstance,
kIndicesPerInstance, instanceCount);
if (!vertices || !indexBuffer) {
SkDebugf("Could not allocate vertices\n");