diff --git a/dev-modules/babel-plugin-inline-webgl-constants/package.json b/dev-modules/babel-plugin-inline-webgl-constants/package.json index 6206e8f6bf..0745a1b8fb 100644 --- a/dev-modules/babel-plugin-inline-webgl-constants/package.json +++ b/dev-modules/babel-plugin-inline-webgl-constants/package.json @@ -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", @@ -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" } diff --git a/dev-modules/babel-plugin-remove-glsl-comments/package.json b/dev-modules/babel-plugin-remove-glsl-comments/package.json index 804615ae62..39f449a9a5 100644 --- a/dev-modules/babel-plugin-remove-glsl-comments/package.json +++ b/dev-modules/babel-plugin-remove-glsl-comments/package.json @@ -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": { diff --git a/dev-modules/eslint-plugin-luma-gl-custom-rules/package.json b/dev-modules/eslint-plugin-luma-gl-custom-rules/package.json index 441dbb321f..644d5d1a1e 100644 --- a/dev-modules/eslint-plugin-luma-gl-custom-rules/package.json +++ b/dev-modules/eslint-plugin-luma-gl-custom-rules/package.json @@ -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" } diff --git a/examples/showcase/instancing/app.tsx b/examples/showcase/instancing/app.tsx index 61c42f595d..0b1ad7a62b 100644 --- a/examples/showcase/instancing/app.tsx +++ b/examples/showcase/instancing/app.tsx @@ -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), diff --git a/examples/webgpu/rotating-cube/app.ts b/examples/webgpu/rotating-cube/app.ts index 171fd89370..eb501ce671 100644 --- a/examples/webgpu/rotating-cube/app.ts +++ b/examples/webgpu/rotating-cube/app.ts @@ -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(); } diff --git a/lerna.json b/lerna.json index 5e13641ef2..f4b4df86a1 100644 --- a/lerna.json +++ b/lerna.json @@ -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, diff --git a/modules/api-tests/package.json b/modules/api-tests/package.json index 9894512e98..7da498af7b 100644 --- a/modules/api-tests/package.json +++ b/modules/api-tests/package.json @@ -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", @@ -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" } diff --git a/modules/api/package.json b/modules/api/package.json index 2bd7e8a596..d9865ae01b 100644 --- a/modules/api/package.json +++ b/modules/api/package.json @@ -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", diff --git a/modules/constants/package.json b/modules/constants/package.json index 2dbc3d4b6a..6cdfcb0641 100644 --- a/modules/constants/package.json +++ b/modules/constants/package.json @@ -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", diff --git a/modules/core/package.json b/modules/core/package.json index bc7350da73..36de933ce5 100644 --- a/modules/core/package.json +++ b/modules/core/package.json @@ -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", @@ -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" } diff --git a/modules/debug/package.json b/modules/debug/package.json index 623af2ea94..c73885016c 100644 --- a/modules/debug/package.json +++ b/modules/debug/package.json @@ -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", @@ -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" diff --git a/modules/engine/package.json b/modules/engine/package.json index 5d52940f4f..1a71d977fd 100644 --- a/modules/engine/package.json +++ b/modules/engine/package.json @@ -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", @@ -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" diff --git a/modules/shadertools/package.json b/modules/shadertools/package.json index 1b673b0838..b7f21aecff 100644 --- a/modules/shadertools/package.json +++ b/modules/shadertools/package.json @@ -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", @@ -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" diff --git a/modules/test-utils/package.json b/modules/test-utils/package.json index 59dc80e015..84ccbc0f62 100644 --- a/modules/test-utils/package.json +++ b/modules/test-utils/package.json @@ -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", @@ -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" diff --git a/modules/webgl/package.json b/modules/webgl/package.json index 33d56fbc10..1a7d80515a 100644 --- a/modules/webgl/package.json +++ b/modules/webgl/package.json @@ -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", @@ -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" } diff --git a/modules/webgpu/package.json b/modules/webgpu/package.json index 8c730e6fc7..1e4ef3608f 100644 --- a/modules/webgpu/package.json +++ b/modules/webgpu/package.json @@ -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", @@ -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" },