Socket
Socket
Sign inDemoInstall

@luma.gl/engine

Package Overview
Dependencies
Maintainers
6
Versions
173
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@luma.gl/engine - npm Package Compare versions

Comparing version 9.1.0-beta.5 to 9.1.0-beta.6

20

dist/models/clip-space.js

@@ -33,5 +33,5 @@ // luma.gl

#version 300 es
in vec2 clipSpacePosition;
in vec2 texCoord;
in vec2 coordinate;
in vec2 clipSpacePositions;
in vec2 texCoords;
in vec2 coordinates;

@@ -43,6 +43,6 @@ out vec2 position;

void main(void) {
gl_Position = vec4(clipSpacePosition, 0., 1.);
position = clipSpacePosition;
coordinate = coordinate;
uv = texCoord;
gl_Position = vec4(clipSpacePositions, 0., 1.);
position = clipSpacePositions;
coordinate = coordinates;
uv = texCoords;
}

@@ -71,5 +71,5 @@ `;

attributes: {
clipSpacePosition: { size: 2, value: new Float32Array(POSITIONS) },
texCoord: { size: 2, value: new Float32Array(TEX_COORDS) },
coordinate: { size: 2, value: new Float32Array(TEX_COORDS) }
clipSpacePositions: { size: 2, value: new Float32Array(POSITIONS) },
texCoords: { size: 2, value: new Float32Array(TEX_COORDS) },
coordinates: { size: 2, value: new Float32Array(TEX_COORDS) }
}

@@ -76,0 +76,0 @@ })

{
"name": "@luma.gl/engine",
"version": "9.1.0-beta.5",
"version": "9.1.0-beta.6",
"description": "3D Engine Components for luma.gl",

@@ -52,3 +52,3 @@ "type": "module",

},
"gitHead": "d5c2ee1e8da9ec65d14330bb2535141c43df5636"
"gitHead": "9c01ec73d17d583ab5e995594335b3c19f4ace75"
}

@@ -38,5 +38,5 @@ // luma.gl

#version 300 es
in vec2 clipSpacePosition;
in vec2 texCoord;
in vec2 coordinate;
in vec2 clipSpacePositions;
in vec2 texCoords;
in vec2 coordinates;

@@ -48,6 +48,6 @@ out vec2 position;

void main(void) {
gl_Position = vec4(clipSpacePosition, 0., 1.);
position = clipSpacePosition;
coordinate = coordinate;
uv = texCoord;
gl_Position = vec4(clipSpacePositions, 0., 1.);
position = clipSpacePositions;
coordinate = coordinates;
uv = texCoords;
}

@@ -83,5 +83,5 @@ `;

attributes: {
clipSpacePosition: {size: 2, value: new Float32Array(POSITIONS)},
texCoord: {size: 2, value: new Float32Array(TEX_COORDS)},
coordinate: {size: 2, value: new Float32Array(TEX_COORDS)}
clipSpacePositions: {size: 2, value: new Float32Array(POSITIONS)},
texCoords: {size: 2, value: new Float32Array(TEX_COORDS)},
coordinates: {size: 2, value: new Float32Array(TEX_COORDS)}
}

@@ -88,0 +88,0 @@ })

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

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

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