-
Notifications
You must be signed in to change notification settings - Fork 6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DisplayList DlMaskFilter objects #31535
DisplayList DlMaskFilter objects #31535
Conversation
|
||
class DlBlurMaskFilter; | ||
|
||
// The DisplayList MaskFilter class. This class was designed to be: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would it make sense to have an abstract class with this documentation on it, and have these classes implement it?
For example, it might specify a virtual type
, size
, shared
, skia_shared
or something?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's an idea. I might go for that on the next attribute I convert.
68275d4
to
3a99bfb
Compare
Fixes flutter/flutter#98714
This PR is similar to #31491 which created a DisplayList-specific, inspectable object to hold all of our color filters. This PR does the same for our mask filter.