diff options
Diffstat (limited to 'include/utils')
-rw-r--r-- | include/utils/SkPaintFilterCanvas.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/utils/SkPaintFilterCanvas.h b/include/utils/SkPaintFilterCanvas.h index 22a6016a11..d6689b91bc 100644 --- a/include/utils/SkPaintFilterCanvas.h +++ b/include/utils/SkPaintFilterCanvas.h @@ -45,7 +45,10 @@ public: // Forwarded to the wrapped canvas. SkISize getBaseLayerSize() const override { return proxy()->getBaseLayerSize(); } - GrContext* getGrContext() override { return proxy()->getGrContext(); } + GrContext* getGrContext() override { return proxy()->getGrContext(); } + GrRenderTargetContext* internal_private_accessTopLayerRenderTargetContext() override { + return proxy()->internal_private_accessTopLayerRenderTargetContext(); + } protected: /** |