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

@lightningjs/renderer

Package Overview
Dependencies
Maintainers
0
Versions
58
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lightningjs/renderer - npm Package Compare versions

Comparing version 2.5.0 to 2.5.1

5

dist/src/core/renderers/webgl/WebGlCoreRenderer.js

@@ -488,2 +488,4 @@ /*

glw.viewport(0, 0, ctxTexture.w, ctxTexture.h);
// Set the clear color to transparent
glw.clearColor(0, 0, 0, 0);
glw.clear();

@@ -512,2 +514,5 @@ // Render all associated quads to the texture

}
const color = getNormalizedRgbaComponents(this.stage.options.clearColor);
// Restore the default clear color
glw.clearColor(color[0], color[1], color[2], color[3]);
// Bind the default framebuffer

@@ -514,0 +519,0 @@ glw.bindFramebuffer(null);

2

package.json
{
"name": "@lightningjs/renderer",
"version": "2.5.0",
"version": "2.5.1",
"description": "Lightning 3 Renderer",

@@ -5,0 +5,0 @@ "type": "module",

@@ -658,2 +658,4 @@ /*

glw.viewport(0, 0, ctxTexture.w, ctxTexture.h);
// Set the clear color to transparent
glw.clearColor(0, 0, 0, 0);
glw.clear();

@@ -687,2 +689,6 @@

const color = getNormalizedRgbaComponents(this.stage.options.clearColor);
// Restore the default clear color
glw.clearColor(color[0]!, color[1]!, color[2]!, color[3]!);
// Bind the default framebuffer

@@ -689,0 +695,0 @@ glw.bindFramebuffer(null);

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