Increase max buffer size
This commit is contained in:
parent
997de994e5
commit
e7eda73d98
|
@ -32,8 +32,8 @@ impl App {
|
||||||
let render_ctx = render::Context::new(
|
let render_ctx = render::Context::new(
|
||||||
&window,
|
&window,
|
||||||
wgpu::Limits {
|
wgpu::Limits {
|
||||||
max_storage_buffer_binding_size: 1 << 29,
|
max_storage_buffer_binding_size: 1 << 30,
|
||||||
max_buffer_size: 1 << 29,
|
max_buffer_size: 1 << 30,
|
||||||
..Default::default()
|
..Default::default()
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue