Set max_non_sampler_bindings to 2048 in iced_wgpu

This commit is contained in:
Héctor Ramón Jiménez 2025-10-18 01:07:11 +02:00
parent 5f131c7e6b
commit d712bcc135
No known key found for this signature in database
GPG key ID: 7CC46565708259A7

View file

@ -154,6 +154,7 @@ impl Compositor {
let limits = limits.into_iter().map(|limits| wgpu::Limits {
max_bind_groups: 2,
max_non_sampler_bindings: 2048,
..limits
});