mirror of
https://github.com/gfx-rs/wgpu.git
synced 2026-04-22 03:02:01 -04:00
Merge #759
759: Bump the maximum bind groups to 8 r=kvark a=kvark **Connections** https://github.com/gfx-rs/wgpu-rs/issues/411#issuecomment-653756154 **Description** This is the hard upper bound. It can be 4, technically, but it would make sense to raise it to at least 8. **Testing** Untested, should work still. Co-authored-by: Dzmitry Malyshau <kvarkus@gmail.com>
This commit is contained in:
@@ -54,7 +54,7 @@ use atomic::{AtomicUsize, Ordering};
|
||||
|
||||
use std::{os::raw::c_char, ptr};
|
||||
|
||||
const MAX_BIND_GROUPS: usize = 4;
|
||||
const MAX_BIND_GROUPS: usize = 8;
|
||||
|
||||
type SubmissionIndex = usize;
|
||||
type Index = u32;
|
||||
|
||||
Reference in New Issue
Block a user