From 5965786b2bb93ace264905e4b34a58917f9be25a Mon Sep 17 00:00:00 2001 From: Dan Field Date: Thu, 22 Jun 2023 15:21:48 -0700 Subject: [PATCH] Removed outdated comment from lib/ui/canvas.h --- lib/ui/painting/canvas.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lib/ui/painting/canvas.h b/lib/ui/painting/canvas.h index 55a221b7d29be..20ab1c9eafa9d 100644 --- a/lib/ui/painting/canvas.h +++ b/lib/ui/painting/canvas.h @@ -191,12 +191,6 @@ class Canvas : public RefCountedDartWrappable, DisplayListOpFlags { private: explicit Canvas(sk_sp builder); - // A copy of the recorder used by the SkCanvas->DisplayList adapter for cases - // where we cannot record the SkCanvas method call through the various OnOp() - // virtual methods or where we can be more efficient by talking directly in - // the DisplayList operation lexicon. The recorder has a method for recording - // paint attributes from an SkPaint and an operation type as well as access - // to the raw DisplayListBuilder for emitting custom rendering operations. sk_sp display_list_builder_; };