Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@pixi/filter-fxaa

Package Overview
Dependencies
Maintainers
3
Versions
122
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pixi/filter-fxaa - npm Package Compare versions

Comparing version 5.0.0-alpha.3 to 5.0.0-rc

12

lib/filter-fxaa.es.js
/*!
* @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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc