diff --git a/maplibre/Cargo.toml b/maplibre/Cargo.toml index 909775ab..6c62ea53 100644 --- a/maplibre/Cargo.toml +++ b/maplibre/Cargo.toml @@ -52,10 +52,7 @@ geozero = { version = "0.9.5", default-features = false, features = ["with-mvt", tile-grid = "0.3.0" # Rendering -wgpu = { git = "https://github.com/Healthire/wgpu.git", rev = "fe5b48c" } -wgpu-hal = { git = "https://github.com/Healthire/wgpu.git", rev = "fe5b48c" } -wgpu-types = { git = "https://github.com/Healthire/wgpu.git", rev = "fe5b48c" } -wgpu-core = { git = "https://github.com/Healthire/wgpu.git", rev = "fe5b48c" } +wgpu = "0.14.0" lyon = { version = "1.0.0", features = [] } raw-window-handle = "0.5.0" diff --git a/maplibre/src/render/mod.rs b/maplibre/src/render/mod.rs index b99322ed..d811b419 100644 --- a/maplibre/src/render/mod.rs +++ b/maplibre/src/render/mod.rs @@ -308,9 +308,6 @@ impl Renderer { max_bind_groups: limits .max_bind_groups .min(constrained_limits.max_bind_groups), - max_bindings_per_bind_group: limits - .max_bindings_per_bind_group - .min(constrained_limits.max_bindings_per_bind_group), max_dynamic_uniform_buffers_per_pipeline_layout: limits .max_dynamic_uniform_buffers_per_pipeline_layout .min(constrained_limits.max_dynamic_uniform_buffers_per_pipeline_layout),