Skip to content

Commit 861b209

Browse files
authored
Update kMaxQueryCount to 4096 (#2104)
This number has been reduced from 8192 in the WebGPU spec.
1 parent 030f44d commit 861b209

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/webgpu/capability_info.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import { ImageCopyType } from './util/texture/layout.js';
1515
// Queries
1616

1717
/** Maximum number of queries in GPUQuerySet, by spec. */
18-
export const kMaxQueryCount = 8192;
18+
export const kMaxQueryCount = 4096;
1919
/** Per-GPUQueryType info. */
2020
export type QueryTypeInfo = {
2121
/** Optional feature required to use this GPUQueryType. */

0 commit comments

Comments
 (0)