mirror of
https://github.com/gfx-rs/wgpu.git
synced 2026-04-22 03:02:01 -04:00
Fix check for QUERY_SET_MAX_QUERIES was using >= instead of >
This commit is contained in:
@@ -2270,7 +2270,7 @@ impl<A: HalApi> Device<A> {
|
||||
return Err(Error::ZeroCount);
|
||||
}
|
||||
|
||||
if desc.count >= wgt::QUERY_SET_MAX_QUERIES {
|
||||
if desc.count > wgt::QUERY_SET_MAX_QUERIES {
|
||||
return Err(Error::TooManyQueries {
|
||||
count: desc.count,
|
||||
maximum: wgt::QUERY_SET_MAX_QUERIES,
|
||||
|
||||
Reference in New Issue
Block a user