Skip to content

Commit 4cab294

Browse files
authored
fix: Maplibre interleaved resize handling (#9803)
1 parent 13ef812 commit 4cab294

File tree

19 files changed

+112
-100
lines changed

19 files changed

+112
-100
lines changed

examples/playground/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"@loaders.gl/csv": "^4.2.0",
1515
"@loaders.gl/draco": "^4.2.0",
1616
"@loaders.gl/gltf": "^4.2.0",
17-
"@luma.gl/constants": "^9.2.0",
17+
"@luma.gl/constants": "^9.2.2",
1818
"deck.gl": "^9.0.0",
1919
"maplibre-gl": "^5.0.0",
2020
"monaco-editor": "^0.39.0",

modules/aggregation-layers/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,17 +38,17 @@
3838
"prepublishOnly": "npm run build-bundle && npm run build-bundle -- --env=dev"
3939
},
4040
"dependencies": {
41-
"@luma.gl/constants": "^9.2.0",
42-
"@luma.gl/shadertools": "^9.2.0",
41+
"@luma.gl/constants": "^9.2.2",
42+
"@luma.gl/shadertools": "^9.2.2",
4343
"@math.gl/core": "^4.1.0",
4444
"@math.gl/web-mercator": "^4.1.0",
4545
"d3-hexbin": "^0.2.1"
4646
},
4747
"peerDependencies": {
4848
"@deck.gl/core": "^9.1.0",
4949
"@deck.gl/layers": "^9.1.0",
50-
"@luma.gl/core": "^9.2.0",
51-
"@luma.gl/engine": "^9.2.0"
50+
"@luma.gl/core": "^9.2.2",
51+
"@luma.gl/engine": "^9.2.2"
5252
},
5353
"gitHead": "13ace64fc2cee08c133afc882fc307253489a4e4"
5454
}

modules/arcgis/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@
3636
"prepublishOnly": "npm run build-bundle && npm run build-bundle -- --env=dev"
3737
},
3838
"dependencies": {
39-
"@luma.gl/constants": "^9.2.0",
39+
"@luma.gl/constants": "^9.2.2",
4040
"esri-loader": "^3.7.0"
4141
},
4242
"peerDependencies": {
4343
"@arcgis/core": "^4.0.0",
4444
"@deck.gl/core": "^9.1.0",
45-
"@luma.gl/core": "^9.2.0",
46-
"@luma.gl/engine": "^9.2.0",
47-
"@luma.gl/webgl": "^9.2.0"
45+
"@luma.gl/core": "^9.2.2",
46+
"@luma.gl/engine": "^9.2.2",
47+
"@luma.gl/webgl": "^9.2.2"
4848
},
4949
"devDependencies": {
5050
"@arcgis/core": "^4.21.0"

modules/carto/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@
4949
"@loaders.gl/mvt": "^4.2.0",
5050
"@loaders.gl/schema": "^4.2.0",
5151
"@loaders.gl/tiles": "^4.2.0",
52-
"@luma.gl/core": "^9.2.0",
53-
"@luma.gl/shadertools": "^9.2.0",
52+
"@luma.gl/core": "^9.2.2",
53+
"@luma.gl/shadertools": "^9.2.2",
5454
"@math.gl/web-mercator": "^4.1.0",
5555
"@types/d3-array": "^3.0.2",
5656
"@types/d3-color": "^1.4.2",
@@ -73,7 +73,7 @@
7373
"@deck.gl/geo-layers": "^9.1.0",
7474
"@deck.gl/layers": "^9.1.0",
7575
"@loaders.gl/core": "^4.2.0",
76-
"@luma.gl/core": "^9.2.0"
76+
"@luma.gl/core": "^9.2.2"
7777
},
7878
"gitHead": "13ace64fc2cee08c133afc882fc307253489a4e4"
7979
}

modules/core/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@
4242
"dependencies": {
4343
"@loaders.gl/core": "^4.2.0",
4444
"@loaders.gl/images": "^4.2.0",
45-
"@luma.gl/constants": "^9.2.0",
46-
"@luma.gl/core": "^9.2.0",
47-
"@luma.gl/engine": "^9.2.0",
48-
"@luma.gl/shadertools": "^9.2.0",
49-
"@luma.gl/webgl": "^9.2.0",
45+
"@luma.gl/constants": "^9.2.2",
46+
"@luma.gl/core": "^9.2.2",
47+
"@luma.gl/engine": "^9.2.2",
48+
"@luma.gl/shadertools": "^9.2.2",
49+
"@luma.gl/webgl": "^9.2.2",
5050
"@math.gl/core": "^4.1.0",
5151
"@math.gl/sun": "^4.1.0",
5252
"@math.gl/types": "^4.1.0",

modules/core/src/lib/deck.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ export default class Deck<ViewsT extends ViewOrViews = null> {
369369
if (props.gl instanceof WebGLRenderingContext) {
370370
log.error('WebGL1 context not supported.')();
371371
}
372-
deviceOrPromise = webgl2Adapter.attach(props.gl);
372+
deviceOrPromise = webgl2Adapter.attach(props.gl, this.props.deviceProps);
373373
}
374374

375375
// Create a new device

modules/extensions/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@
3838
"prepublishOnly": "npm run build-bundle && npm run build-bundle -- --env=dev"
3939
},
4040
"dependencies": {
41-
"@luma.gl/constants": "^9.2.0",
42-
"@luma.gl/shadertools": "^9.2.0",
41+
"@luma.gl/constants": "^9.2.2",
42+
"@luma.gl/shadertools": "^9.2.2",
4343
"@math.gl/core": "^4.1.0"
4444
},
4545
"peerDependencies": {
4646
"@deck.gl/core": "^9.1.0",
47-
"@luma.gl/core": "^9.2.0",
48-
"@luma.gl/engine": "^9.2.0"
47+
"@luma.gl/core": "^9.2.2",
48+
"@luma.gl/engine": "^9.2.2"
4949
},
5050
"gitHead": "13ace64fc2cee08c133afc882fc307253489a4e4"
5151
}

modules/geo-layers/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@
4646
"@loaders.gl/terrain": "^4.2.0",
4747
"@loaders.gl/tiles": "^4.2.0",
4848
"@loaders.gl/wms": "^4.2.0",
49-
"@luma.gl/gltf": "^9.2.0",
50-
"@luma.gl/shadertools": "^9.2.0",
49+
"@luma.gl/gltf": "^9.2.2",
50+
"@luma.gl/shadertools": "^9.2.2",
5151
"@math.gl/core": "^4.1.0",
5252
"@math.gl/culling": "^4.1.0",
5353
"@math.gl/web-mercator": "^4.1.0",
@@ -62,8 +62,8 @@
6262
"@deck.gl/layers": "^9.1.0",
6363
"@deck.gl/mesh-layers": "^9.1.0",
6464
"@loaders.gl/core": "^4.2.0",
65-
"@luma.gl/core": "^9.2.0",
66-
"@luma.gl/engine": "^9.2.0"
65+
"@luma.gl/core": "^9.2.2",
66+
"@luma.gl/engine": "^9.2.2"
6767
},
6868
"gitHead": "13ace64fc2cee08c133afc882fc307253489a4e4"
6969
}

modules/google-maps/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,16 +38,16 @@
3838
"prepublishOnly": "npm run build-bundle && npm run build-bundle -- --env=dev"
3939
},
4040
"dependencies": {
41-
"@luma.gl/constants": "^9.2.0",
42-
"@luma.gl/webgl": "^9.2.0",
41+
"@luma.gl/constants": "^9.2.2",
42+
"@luma.gl/webgl": "^9.2.2",
4343
"@math.gl/core": "^4.1.0",
4444
"@types/google.maps": "^3.48.6"
4545
},
4646
"peerDependencies": {
4747
"@deck.gl/core": "^9.1.0",
48-
"@luma.gl/constants": "^9.2.0",
49-
"@luma.gl/core": "^9.2.0",
50-
"@luma.gl/webgl": "^9.2.0"
48+
"@luma.gl/constants": "^9.2.2",
49+
"@luma.gl/core": "^9.2.2",
50+
"@luma.gl/webgl": "^9.2.2"
5151
},
5252
"gitHead": "13ace64fc2cee08c133afc882fc307253489a4e4"
5353
}

modules/jupyter-widget/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@
4141
"@loaders.gl/3d-tiles": "^4.2.0",
4242
"@loaders.gl/core": "^4.2.0",
4343
"@loaders.gl/csv": "^4.2.0",
44-
"@luma.gl/constants": "^9.2.0",
45-
"@luma.gl/core": "^9.2.0",
46-
"@luma.gl/webgl": "^9.2.0",
44+
"@luma.gl/constants": "^9.2.2",
45+
"@luma.gl/core": "^9.2.2",
46+
"@luma.gl/webgl": "^9.2.2",
4747
"d3-dsv": "^1.0.8",
4848
"mapbox-gl": "^1.13.2"
4949
},

0 commit comments

Comments
 (0)