From fdac91189829bf56a417546a91c68e56e1fa9c32 Mon Sep 17 00:00:00 2001 From: Jim Graham Date: Wed, 7 Jul 2021 15:26:10 -0700 Subject: [PATCH] Fix spelling Ingore->Ignore --- flow/display_list_utils.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/flow/display_list_utils.h b/flow/display_list_utils.h index 95ae27c852a4d..bac3cca8dc101 100644 --- a/flow/display_list_utils.h +++ b/flow/display_list_utils.h @@ -12,9 +12,9 @@ // This file contains various utility classes to ease implementing // a Flutter DisplayList Dispatcher, including: // -// IngoreAttributeDispatchHelper: -// IngoreClipDispatchHelper: -// IngoreTransformDispatchHelper +// IgnoreAttributeDispatchHelper: +// IgnoreClipDispatchHelper: +// IgnoreTransformDispatchHelper // Empty overrides of all of the associated methods of Dispatcher // for dispatchers that only track some of the rendering operations // @@ -37,7 +37,7 @@ namespace flutter { // A utility class that will ignore all Dispatcher methods relating // to the setting of attributes. -class IngoreAttributeDispatchHelper : public virtual Dispatcher { +class IgnoreAttributeDispatchHelper : public virtual Dispatcher { public: void setAA(bool aa) override {} void setDither(bool dither) override {} @@ -60,7 +60,7 @@ class IngoreAttributeDispatchHelper : public virtual Dispatcher { // A utility class that will ignore all Dispatcher methods relating // to setting a clip. -class IngoreClipDispatchHelper : public virtual Dispatcher { +class IgnoreClipDispatchHelper : public virtual Dispatcher { void clipRect(const SkRect& rect, bool isAA, SkClipOp clip_op) override {} void clipRRect(const SkRRect& rrect, bool isAA, SkClipOp clip_op) override {} void clipPath(const SkPath& path, bool isAA, SkClipOp clip_op) override {} @@ -68,7 +68,7 @@ class IngoreClipDispatchHelper : public virtual Dispatcher { // A utility class that will ignore all Dispatcher methods relating // to modifying the transform. -class IngoreTransformDispatchHelper : public virtual Dispatcher { +class IgnoreTransformDispatchHelper : public virtual Dispatcher { public: void translate(SkScalar tx, SkScalar ty) override {} void scale(SkScalar sx, SkScalar sy) override {}