Skip to content
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

Improve the performance of DropShadowFilter #101

Merged
merged 5 commits into from
Nov 29, 2017

Conversation

finscn
Copy link
Contributor

@finscn finscn commented Nov 2, 2017

Detail at : #98 (comment)

Just a very little.

this.tintFilter.apply(filterManager, input, target, true);
this.blurFilter.apply(filterManager, target, output);
super.apply(filterManager, input, output);
filterManager.applyFilter(this, input, output);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@finscn why this change? Also with #103, we should probably pass clear to applyFilter

Copy link
Contributor Author

@finscn finscn Nov 29, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed.

And many filters use filterManager.applyFilter(this, input, output, clear).
And filterManager.applyFilter is faster than Filter.prototype.apply.call(...).
super.apply(filterManager, input, output); will became Filter.prototype.apply.call after built.

And In Filter.prototype.apply , there is filterManager.applyFilter(...)

@bigtimebuddy bigtimebuddy merged commit deb98c6 into pixijs:master Nov 29, 2017
@finscn finscn deleted the patch-11 branch January 15, 2018 07:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants