Reduce initial size of triangle buffers in iced_wgpu
This commit is contained in:
parent
5d12e194f4
commit
38c4dd5fdb
1 changed files with 2 additions and 2 deletions
|
|
@ -7,8 +7,8 @@ use zerocopy::AsBytes;
|
|||
mod msaa;
|
||||
|
||||
const UNIFORM_BUFFER_SIZE: usize = 100;
|
||||
const VERTEX_BUFFER_SIZE: usize = 100_000;
|
||||
const INDEX_BUFFER_SIZE: usize = 100_000;
|
||||
const VERTEX_BUFFER_SIZE: usize = 10_000;
|
||||
const INDEX_BUFFER_SIZE: usize = 10_000;
|
||||
|
||||
#[derive(Debug)]
|
||||
pub(crate) struct Pipeline {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue