Add missing recordingContext override to SkPaintFilterCanvas

This should fix the gpu-specific slides in Viewer.

Change-Id: I3ff069005bfe3639eb9608223b13c64f4c28c396
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/301441
Reviewed-by: John Stiles <johnstiles@google.com>
Reviewed-by: Brian Salomon <bsalomon@google.com>
Commit-Queue: Robert Phillips <robertphillips@google.com>
This commit is contained in:
Robert Phillips 2020-07-09 09:01:58 -04:00 committed by Skia Commit-Bot
parent 1bef9793e9
commit dadc0819e9

View File

@ -32,6 +32,7 @@ public:
// Forwarded to the wrapped canvas.
SkISize getBaseLayerSize() const override { return proxy()->getBaseLayerSize(); }
GrContext* getGrContext() override { return proxy()->getGrContext(); }
GrRecordingContext* recordingContext() override { return proxy()->recordingContext(); }
GrRenderTargetContext* internal_private_accessTopLayerRenderTargetContext() override {
return proxy()->internal_private_accessTopLayerRenderTargetContext();
}