Skip to content

Commit

Permalink
Version 6.3.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
vanruesc committed Apr 27, 2019
1 parent 501b604 commit 4f43536
Show file tree
Hide file tree
Showing 13 changed files with 7,562 additions and 7,098 deletions.
5 changes: 3 additions & 2 deletions build/postprocessing.esm.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* postprocessing v6.3.0 build Thu Apr 25 2019
* postprocessing v6.3.1 build Sat Apr 27 2019
* https://github.com/vanruesc/postprocessing
* Copyright 2019 Raoul van Rüschen, Zlib
*/
Expand Down Expand Up @@ -2725,7 +2725,8 @@ class EffectPass extends Pass {

if(effect.blendMode.blendFunction === BlendFunction.SKIP) {

continue;
// Check if this effect relies on depth and then continue.
attributes |= (effect.attributes & EffectAttribute.DEPTH);

} else if((attributes & EffectAttribute.CONVOLUTION) !== 0 && (effect.attributes & EffectAttribute.CONVOLUTION) !== 0) {

Expand Down
4 changes: 2 additions & 2 deletions build/postprocessing.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* postprocessing v6.3.0 build Thu Apr 25 2019
* postprocessing v6.3.1 build Sat Apr 27 2019
* https://github.com/vanruesc/postprocessing
* Copyright 2019 Raoul van Rüschen, Zlib
*/
Expand Down Expand Up @@ -1434,7 +1434,7 @@
var effect = _step5.value;

if (effect.blendMode.blendFunction === BlendFunction.SKIP) {
continue;
attributes |= effect.attributes & EffectAttribute.DEPTH;
} else if ((attributes & EffectAttribute.CONVOLUTION) !== 0 && (effect.attributes & EffectAttribute.CONVOLUTION) !== 0) {
console.error("Convolution effects cannot be merged", effect);
} else {
Expand Down
4 changes: 2 additions & 2 deletions build/postprocessing.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "postprocessing",
"version": "6.3.0",
"version": "6.3.1",
"description": "A post processing library that provides the means to implement image filter effects for three.js.",
"homepage": "https://github.com/vanruesc/postprocessing",
"main": "build/postprocessing.js",
Expand Down
2 changes: 1 addition & 1 deletion public/demo/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion public/demo/index.min.js

Large diffs are not rendered by default.

0 comments on commit 4f43536

Please sign in to comment.