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:
bors[bot]
2020-07-04 15:23:56 +00:00
committed by GitHub

View File

@@ -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;