Index: src/gpu/batches/GrClearStencilClipBatch.h |
diff --git a/src/gpu/batches/GrClearStencilClipBatch.h b/src/gpu/batches/GrClearStencilClipBatch.h |
index d13d3dcff491372f083294875587cd64d2c3682c..e5108219393c9dba7210f9e11660189942832ae8 100644 |
--- a/src/gpu/batches/GrClearStencilClipBatch.h |
+++ b/src/gpu/batches/GrClearStencilClipBatch.h |
@@ -31,7 +31,7 @@ public: |
const char* name() const override { return "ClearStencilClip"; } |
- uint32_t renderTargetUniqueID() const override { return fRenderTarget.get()->getUniqueID(); } |
+ uint32_t renderTargetUniqueID() const override { return fRenderTarget.get()->uniqueID(); } |
GrRenderTarget* renderTarget() const override { return fRenderTarget.get(); } |
SkString dumpInfo() const override { |
@@ -40,7 +40,7 @@ public: |
const SkIRect& r = fClip.scissorRect(); |
string.appendf("L: %d, T: %d, R: %d, B: %d", r.fLeft, r.fTop, r.fRight, r.fBottom); |
} |
- string.appendf("], IC: %d, RT: %d", fInsideStencilMask, fRenderTarget.get()->getUniqueID()); |
+ string.appendf("], IC: %d, RT: %d", fInsideStencilMask, fRenderTarget.get()->uniqueID()); |
string.append(INHERITED::dumpInfo()); |
return string; |
} |