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

Add AdjustmentFilter #124

Merged
merged 9 commits into from
Jan 8, 2018
Merged

Conversation

finscn
Copy link
Contributor

@finscn finscn commented Dec 28, 2017

This filter could help use to Adjust some basic properties of color :
gamma, contrast, saturation, brightness, alpha & RGB Channel.

Some effects also could be done with ColorMatrixFilter ,
But AdjustmentFilter is simple & easy to be understood .

And It's more fast than ColorMatrixFilter. The core of the shader :

    vec3 rgb = pow(c.rgb, vec3(1. / gamma));
    rgb = mix(vec3(.5), mix(vec3(dot(vec3(.2125, .7154, .0721), rgb)), rgb, saturation), contrast);
    rgb.r *= red;
    rgb.g *= green;
    rgb.b *= blue;
    c.rgb = rgb * brightness;

There is no any complicated matrix computation .

Online example: http://fatidol.com/pixi-filters/

@@ -0,0 +1,21 @@
The MIT License

Copyright (c) 2013-2017 Mathew Groves, Chad Engler
Copy link
Member

Choose a reason for hiding this comment

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

Change copyright?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

After all of my filters be merged , I will create a new PR for change all of them.

Copy link
Member

Choose a reason for hiding this comment

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

Okay 👍

super(vertex, fragment);

Object.assign(this, {
gamma: 1,
Copy link
Member

@bigtimebuddy bigtimebuddy Jan 3, 2018

Choose a reason for hiding this comment

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

Need to documentation for each of the properties, not just the constructor options.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I don't understand.... How to add documentation in Object.assign() ?

Copy link
Member

Choose a reason for hiding this comment

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

I'm not sure if you need to add the name after @member or not if it's not attached to this.gamma. Test the documentation with npm run docs to preview.

Object.assign(this, {
  /**
   * The amount of Gamma
   * @member {number} gamma
   * @default 1
   */
  gamma: 1,

Copy link
Contributor Author

Choose a reason for hiding this comment

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

can't run npm run docs I don't know why...

@bigtimebuddy bigtimebuddy added this to the v2.5.0 milestone Jan 5, 2018
@bigtimebuddy bigtimebuddy merged commit 2539b8c into pixijs:master Jan 8, 2018
@bigtimebuddy
Copy link
Member

Another awesome and useful filter. Thanks @finscn!

@finscn finscn deleted the add-AdjustmentFilter 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