Socket
Socket
Sign inDemoInstall

videocontext

Package Overview
Dependencies
Maintainers
1
Versions
121
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

videocontext - npm Package Compare versions

Comparing version 0.32.2 to 0.33.0

docs/examples/codeplayground/css/main.css

4

package.json
{
"name": "videocontext",
"version": "0.32.2",
"version": "0.33.0",
"description": "A WebGL & HTML5 graph based video composition library",

@@ -15,3 +15,3 @@ "keywords":["video", "context", "composition", "timeline", "html5", "webgl"],

"doc": "node ./node_modules/jsdoc/jsdoc.js -c jsdoc.json && cp dist/videocontext.* docs/dist/",
"build": "./node_modules/webpack/bin/webpack.js --config webpack.config.js && ./node_modules/webpack/bin/webpack.js --config webpack.commonjs2.config.js && npm run doc",
"build": "node ./node_modules/mocha/bin/mocha --compilers js:babel-core/register && ./node_modules/webpack/bin/webpack.js --config webpack.config.js && ./node_modules/webpack/bin/webpack.js --config webpack.commonjs2.config.js && npm run doc",
"dev": "./node_modules/webpack/bin/webpack.js --watch --config webpack.config.js & ./node_modules/reload/bin/reload -b"

@@ -18,0 +18,0 @@ },

@@ -24,10 +24,10 @@ let dreamfade = {

vec4 color_b = texture2D(u_image_b, pos);\
color_a[0] *= mix;\
color_a[1] *= mix;\
color_a[2] *= mix;\
color_a[3] *= mix;\
color_b[0] *= (1.0 - mix);\
color_b[1] *= (1.0 - mix);\
color_b[2] *= (1.0 - mix);\
color_b[3] *= (1.0 - mix);\
color_a[0] *= (1.0 - mix);\
color_a[1] *= (1.0 - mix);\
color_a[2] *= (1.0 - mix);\
color_a[3] *= (1.0 - mix);\
color_b[0] *= mix;\
color_b[1] *= mix;\
color_b[2] *= mix;\
color_b[3] *= mix;\
gl_FragColor = color_a + color_b;\

@@ -34,0 +34,0 @@ }",

@@ -40,4 +40,4 @@ let starWipe = {

void main(){\
vec4 color_a = texture2D(u_image_a, v_texCoord);\
vec4 color_b = texture2D(u_image_b, v_texCoord);\
vec4 color_a = texture2D(u_image_b, v_texCoord);\
vec4 color_b = texture2D(u_image_a, v_texCoord);\
vec2 t0_p0,t0_p1,t0_p2,t1_p0,t1_p1,t1_p2,t2_p0,t2_p1,t2_p2,t3_p0,t3_p1,t3_p2;\

@@ -44,0 +44,0 @@ vec2 t4_p0,t4_p1,t4_p2,t5_p0,t5_p1,t5_p2,t6_p0,t6_p1,t6_p2,t7_p0,t7_p1,t7_p2;\

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

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