@pixi/filter-fxaa
Advanced tools
Comparing version 5.0.0-alpha.3 to 5.0.0-rc
/*! | ||
* @pixi/filter-fxaa - v5.0.0-alpha.3 | ||
* Compiled Tue, 03 Jul 2018 04:08:21 UTC | ||
* @pixi/filter-fxaa - v5.0.0-rc | ||
* Compiled Fri, 01 Feb 2019 04:50:10 UTC | ||
* | ||
@@ -15,7 +15,5 @@ * @pixi/filter-fxaa is licensed under the MIT License. | ||
/** | ||
* Basic FXAA (Fast Approximate Anti-Aliasing) implementation based on the code on geeks3d.com | ||
* with the modification that the texture2DLod stuff was removed since it is unsupported by WebGL. | ||
* | ||
* Basic FXAA implementation based on the code on geeks3d.com with the | ||
* modification that the texture2DLod stuff was removed since it's | ||
* unsupported by WebGL. | ||
* | ||
* @see https://github.com/mitsuhiko/webgl-meincraft | ||
@@ -28,3 +26,3 @@ * | ||
*/ | ||
var FXAAFilter = (function (Filter$$1) { | ||
var FXAAFilter = /*@__PURE__*/(function (Filter$$1) { | ||
function FXAAFilter() | ||
@@ -31,0 +29,0 @@ { |
/*! | ||
* @pixi/filter-fxaa - v5.0.0-alpha.3 | ||
* Compiled Tue, 03 Jul 2018 04:08:21 UTC | ||
* @pixi/filter-fxaa - v5.0.0-rc | ||
* Compiled Fri, 01 Feb 2019 04:50:10 UTC | ||
* | ||
@@ -19,7 +19,5 @@ * @pixi/filter-fxaa is licensed under the MIT License. | ||
/** | ||
* Basic FXAA (Fast Approximate Anti-Aliasing) implementation based on the code on geeks3d.com | ||
* with the modification that the texture2DLod stuff was removed since it is unsupported by WebGL. | ||
* | ||
* Basic FXAA implementation based on the code on geeks3d.com with the | ||
* modification that the texture2DLod stuff was removed since it's | ||
* unsupported by WebGL. | ||
* | ||
* @see https://github.com/mitsuhiko/webgl-meincraft | ||
@@ -32,11 +30,11 @@ * | ||
*/ | ||
var FXAAFilter = (function (Filter$$1) { | ||
var FXAAFilter = /*@__PURE__*/(function (Filter) { | ||
function FXAAFilter() | ||
{ | ||
// TODO - needs work | ||
Filter$$1.call(this, vertex, fragment); | ||
Filter.call(this, vertex, fragment); | ||
} | ||
if ( Filter$$1 ) FXAAFilter.__proto__ = Filter$$1; | ||
FXAAFilter.prototype = Object.create( Filter$$1 && Filter$$1.prototype ); | ||
if ( Filter ) FXAAFilter.__proto__ = Filter; | ||
FXAAFilter.prototype = Object.create( Filter && Filter.prototype ); | ||
FXAAFilter.prototype.constructor = FXAAFilter; | ||
@@ -43,0 +41,0 @@ |
{ | ||
"name": "@pixi/filter-fxaa", | ||
"version": "5.0.0-alpha.3", | ||
"version": "5.0.0-rc", | ||
"main": "lib/filter-fxaa.js", | ||
"module": "lib/filter-fxaa.es.js", | ||
"description": "Support for legacy browser JavaScript environments", | ||
"description": "Filter for fast approximate anti-aliasing", | ||
"author": "Mat Groves", | ||
@@ -25,7 +25,8 @@ "contributors": [ | ||
"dependencies": { | ||
"@pixi/core": "^5.0.0-alpha.3" | ||
"@pixi/core": "^5.0.0-rc" | ||
}, | ||
"devDependencies": { | ||
"floss": "^2.1.3" | ||
} | ||
"floss": "^2.1.5" | ||
}, | ||
"gitHead": "9026a1bbca9a9d86b7a3b6d5eb4fa2c3145c2b85" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
16909
102
Updated@pixi/core@^5.0.0-rc