From e7eda73d98ea52c74b96d25a947f4450018d075c Mon Sep 17 00:00:00 2001 From: Jarrod Doyle Date: Thu, 27 Jul 2023 19:12:24 +0100 Subject: [PATCH] Increase max buffer size --- src/core/app.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/app.rs b/src/core/app.rs index ec01ee3..35a0e13 100644 --- a/src/core/app.rs +++ b/src/core/app.rs @@ -32,8 +32,8 @@ impl App { let render_ctx = render::Context::new( &window, wgpu::Limits { - max_storage_buffer_binding_size: 1 << 29, - max_buffer_size: 1 << 29, + max_storage_buffer_binding_size: 1 << 30, + max_buffer_size: 1 << 30, ..Default::default() }, )