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

@luma.gl/gltools

Package Overview
Dependencies
Maintainers
7
Versions
92
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@luma.gl/gltools - npm Package Compare versions

Comparing version 9.0.0-alpha.6 to 9.0.0-alpha.7

1

dist/transform/transform-types.d.ts

@@ -36,2 +36,3 @@ import { Texture } from "@luma.gl/api";

export declare type TransformRunOptions = {
framebuffer?: Framebuffer;
clearRenderTarget?: boolean;

@@ -38,0 +39,0 @@ uniforms?: Record<string, any>;

4

dist/transform/transform.d.ts

@@ -45,3 +45,3 @@ import { Device } from '@luma.gl/api';

*/
static isSupported(device: Device | WebGL2RenderingContext): boolean;
static isSupported(device: Device | WebGLRenderingContext): boolean;
readonly device: WebGLDevice;

@@ -54,3 +54,3 @@ readonly gl: WebGL2RenderingContext;

elementIDBuffer: Buffer;
constructor(device: Device | WebGL2RenderingContext, props?: TransformProps);
constructor(device: Device | WebGLRenderingContext, props?: TransformProps);
/** Delete owned resources. */

@@ -57,0 +57,0 @@ destroy(): void;

{
"name": "@luma.gl/gltools",
"version": "9.0.0-alpha.6",
"version": "9.0.0-alpha.7",
"description": "WebGL2 API Polyfills for WebGL1 WebGLRenderingContext",

@@ -32,8 +32,8 @@ "license": "MIT",

"@babel/runtime": "^7.0.0",
"@luma.gl/constants": "9.0.0-alpha.6",
"@luma.gl/engine": "9.0.0-alpha.6",
"@luma.gl/webgl": "9.0.0-alpha.6",
"@luma.gl/constants": "9.0.0-alpha.7",
"@luma.gl/engine": "9.0.0-alpha.7",
"@luma.gl/webgl": "9.0.0-alpha.7",
"@probe.gl/log": "^3.5.0"
},
"gitHead": "d4a92477c1d76f6242ec0fe377e238669e0667c0"
"gitHead": "c1fbf71bb1311dcdc54338d82d299f8ed0d73346"
}

@@ -36,2 +36,3 @@ // luma.gl, MIT license

export type TransformRunOptions = {
framebuffer?: Framebuffer;
clearRenderTarget?: boolean;

@@ -38,0 +39,0 @@ uniforms?: Record<string, any>;

@@ -47,3 +47,3 @@ import {Device, assert, isObjectEmpty} from '@luma.gl/api';

*/
static isSupported(device: Device | WebGL2RenderingContext): boolean {
static isSupported(device: Device | WebGLRenderingContext): boolean {
try {

@@ -65,3 +65,3 @@ const webglDevice = WebGLDevice.attach(device);

constructor(device: Device | WebGL2RenderingContext, props: TransformProps = {}) {
constructor(device: Device | WebGLRenderingContext, props: TransformProps = {}) {
this.device = WebGLDevice.attach(device);

@@ -68,0 +68,0 @@ // TODO assert webgl2?

Sorry, the diff of this file is not supported yet

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