Skip to content

Commit

Permalink
v9.0.0-alpha.23
Browse files Browse the repository at this point in the history
  • Loading branch information
ibgreen committed Jul 15, 2023
1 parent aeb746a commit 5e4a304
Show file tree
Hide file tree
Showing 16 changed files with 39 additions and 38 deletions.
4 changes: 2 additions & 2 deletions dev-modules/babel-plugin-inline-webgl-constants/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "babel-plugin-inline-webgl-constants",
"version": "9.0.0-alpha.21",
"version": "9.0.0-alpha.23",
"private": true,
"description": "Babel plugin for replacing long gl constants with the shorter corresponding numbers",
"type": "module",
Expand All @@ -25,7 +25,7 @@
"require": "./dist/index.cjs"
},
"dependencies": {
"@luma.gl/constants": "9.0.0-alpha.21"
"@luma.gl/constants": "9.0.0-alpha.23"
},
"gitHead": "c636c34b8f1581eed163e94543a8eb1f4382ba8e"
}
2 changes: 1 addition & 1 deletion dev-modules/babel-plugin-remove-glsl-comments/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "babel-plugin-remove-glsl-comments",
"private": true,
"version": "9.0.0-alpha.21",
"version": "9.0.0-alpha.23",
"description": "Babel plugin for removing glsl comments",
"license": "MIT",
"repository": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "eslint-plugin-luma-gl-custom-rules",
"private": "true",
"version": "9.0.0-alpha.21",
"version": "9.0.0-alpha.23",
"main": "index.cjs",
"gitHead": "c636c34b8f1581eed163e94543a8eb1f4382ba8e"
}
1 change: 1 addition & 0 deletions examples/showcase/instancing/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,7 @@ export default class AppAnimationLoopTemplate extends AnimationLoopTemplate {
}

// Draw the cubes
// @ts-ignore
const renderPass = device.beginRenderPass({clearColor: [0, 0, 0, 1], clearDepth: 1, clearStencil: 0});
this.cube.setUniforms({
uTime: this.timeline.getTime(timeChannel),
Expand Down
2 changes: 1 addition & 1 deletion examples/webgpu/rotating-cube/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ export default class AppAnimationLoopTemplate extends AnimationLoopTemplate {
modelViewProjectionMatrix.copy(viewMatrix).multiplyLeft(projectionMatrix);
this.uniformBuffer.write(new Float32Array(modelViewProjectionMatrix));

const renderPass = device.beginRenderPass();
const renderPass = device.beginRenderPass({});
this.model.draw(renderPass);
renderPass.end();
}
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"lerna": "2.0.0",
"version": "9.0.0-alpha.21",
"version": "9.0.0-alpha.23",
"npmClient": "yarn",
"useWorkspaces": true,
"exact": true,
Expand Down
10 changes: 5 additions & 5 deletions modules/api-tests/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@luma.gl/api-tests",
"version": "9.0.0-alpha.21",
"version": "9.0.0-alpha.23",
"description": "luma.gl API",
"license": "MIT",
"type": "module",
Expand Down Expand Up @@ -37,10 +37,10 @@
"pre-build": "npm run build-bundle && npm run build-bundle -- --env=dev"
},
"devDependencies": {
"@luma.gl/api": "9.0.0-alpha.21",
"@luma.gl/test-utils": "9.0.0-alpha.21",
"@luma.gl/webgl": "9.0.0-alpha.21",
"@luma.gl/webgpu": "9.0.0-alpha.21"
"@luma.gl/api": "9.0.0-alpha.23",
"@luma.gl/test-utils": "9.0.0-alpha.23",
"@luma.gl/webgl": "9.0.0-alpha.23",
"@luma.gl/webgpu": "9.0.0-alpha.23"
},
"gitHead": "c636c34b8f1581eed163e94543a8eb1f4382ba8e"
}
2 changes: 1 addition & 1 deletion modules/api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@luma.gl/api",
"version": "9.0.0-alpha.21",
"version": "9.0.0-alpha.23",
"description": "luma.gl API",
"license": "MIT",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion modules/constants/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@luma.gl/constants",
"version": "9.0.0-alpha.21",
"version": "9.0.0-alpha.23",
"description": "WebGL and WebGL2 constants",
"type": "module",
"license": "MIT",
Expand Down
10 changes: 5 additions & 5 deletions modules/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@luma.gl/core",
"version": "9.0.0-alpha.21",
"version": "9.0.0-alpha.23",
"description": "WebGL2 Components for High Performance Rendering and Computation",
"type": "module",
"license": "MIT",
Expand Down Expand Up @@ -40,10 +40,10 @@
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"@luma.gl/constants": "9.0.0-alpha.21",
"@luma.gl/engine": "9.0.0-alpha.21",
"@luma.gl/shadertools": "9.0.0-alpha.21",
"@luma.gl/webgl": "9.0.0-alpha.21"
"@luma.gl/constants": "9.0.0-alpha.23",
"@luma.gl/engine": "9.0.0-alpha.23",
"@luma.gl/shadertools": "9.0.0-alpha.23",
"@luma.gl/webgl": "9.0.0-alpha.23"
},
"gitHead": "c636c34b8f1581eed163e94543a8eb1f4382ba8e"
}
4 changes: 2 additions & 2 deletions modules/debug/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@luma.gl/debug",
"version": "9.0.0-alpha.21",
"version": "9.0.0-alpha.23",
"description": "Debug utilities for luma.gl",
"type": "module",
"license": "MIT",
Expand Down Expand Up @@ -39,7 +39,7 @@
"pre-build": "npm run build-bundle && npm run build-bundle -- --env=dev"
},
"dependencies": {
"@luma.gl/constants": "9.0.0-alpha.21",
"@luma.gl/constants": "9.0.0-alpha.23",
"@math.gl/core": "4.0.0-alpha.4",
"@probe.gl/env": "^4.0.2",
"glsl-transpiler": "^1.8.5"
Expand Down
10 changes: 5 additions & 5 deletions modules/engine/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@luma.gl/engine",
"version": "9.0.0-alpha.21",
"version": "9.0.0-alpha.23",
"description": "WebGL2 Components for High Performance Rendering and Computation",
"type": "module",
"license": "MIT",
Expand Down Expand Up @@ -40,10 +40,10 @@
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"@luma.gl/api": "9.0.0-alpha.21",
"@luma.gl/constants": "9.0.0-alpha.21",
"@luma.gl/shadertools": "9.0.0-alpha.21",
"@luma.gl/webgl": "9.0.0-alpha.21",
"@luma.gl/api": "9.0.0-alpha.23",
"@luma.gl/constants": "9.0.0-alpha.23",
"@luma.gl/shadertools": "9.0.0-alpha.23",
"@luma.gl/webgl": "9.0.0-alpha.23",
"@math.gl/core": "4.0.0-alpha.4",
"@probe.gl/log": "^4.0.2",
"@probe.gl/stats": "^4.0.2"
Expand Down
4 changes: 2 additions & 2 deletions modules/shadertools/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@luma.gl/shadertools",
"version": "9.0.0-alpha.21",
"version": "9.0.0-alpha.23",
"description": "Shader module system for luma.gl",
"type": "module",
"license": "MIT",
Expand Down Expand Up @@ -46,7 +46,7 @@
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"@luma.gl/api": "9.0.0-alpha.21",
"@luma.gl/api": "9.0.0-alpha.23",
"@math.gl/core": "4.0.0-alpha.4"
},
"gitHead": "c636c34b8f1581eed163e94543a8eb1f4382ba8e"
Expand Down
10 changes: 5 additions & 5 deletions modules/test-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@luma.gl/test-utils",
"version": "9.0.0-alpha.21",
"version": "9.0.0-alpha.23",
"description": "Automated WebGL testing utilities with Puppeteer and image diffing",
"type": "module",
"license": "MIT",
Expand Down Expand Up @@ -39,10 +39,10 @@
"pre-build": "echo test utils has no bundle"
},
"dependencies": {
"@luma.gl/api": "9.0.0-alpha.21",
"@luma.gl/engine": "9.0.0-alpha.21",
"@luma.gl/webgl": "9.0.0-alpha.21",
"@luma.gl/webgpu": "9.0.0-alpha.21",
"@luma.gl/api": "9.0.0-alpha.23",
"@luma.gl/engine": "9.0.0-alpha.23",
"@luma.gl/webgl": "9.0.0-alpha.23",
"@luma.gl/webgpu": "9.0.0-alpha.23",
"@probe.gl/env": "^4.0.2",
"@types/gl": "^6.0.2",
"gl": "^6.0.1"
Expand Down
8 changes: 4 additions & 4 deletions modules/webgl/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@luma.gl/webgl",
"version": "9.0.0-alpha.21",
"version": "9.0.0-alpha.23",
"description": "WebGL2 adapter for the luma.gl API",
"type": "module",
"license": "MIT",
Expand Down Expand Up @@ -44,12 +44,12 @@
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"@luma.gl/api": "9.0.0-alpha.21",
"@luma.gl/constants": "9.0.0-alpha.21",
"@luma.gl/api": "9.0.0-alpha.23",
"@luma.gl/constants": "9.0.0-alpha.23",
"@probe.gl/env": "^4.0.2"
},
"devDependencies": {
"@luma.gl/test-utils": "9.0.0-alpha.21"
"@luma.gl/test-utils": "9.0.0-alpha.23"
},
"gitHead": "c636c34b8f1581eed163e94543a8eb1f4382ba8e"
}
4 changes: 2 additions & 2 deletions modules/webgpu/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@luma.gl/webgpu",
"version": "9.0.0-alpha.21",
"version": "9.0.0-alpha.23",
"description": "WebGPU adapter for the luma.gl API",
"type": "module",
"license": "MIT",
Expand Down Expand Up @@ -37,7 +37,7 @@
},
"dependencies": {
"@babel/runtime": "^7.0.0",
"@luma.gl/api": "9.0.0-alpha.21",
"@luma.gl/api": "9.0.0-alpha.23",
"@probe.gl/env": "^4.0.2",
"@webgpu/types": "^0.1.31"
},
Expand Down

0 comments on commit 5e4a304

Please sign in to comment.