We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdf2938 commit fc2030cCopy full SHA for fc2030c
src/webgpu/format_info.ts
@@ -1857,6 +1857,19 @@ export function isSintOrUintFormat(format: GPUTextureFormat) {
1857
* Returns true of format can be multisampled.
1858
*/
1859
export const kCompatModeUnsupportedMultisampledTextureFormats: readonly GPUTextureFormat[] = [
1860
+ 'r8uint',
1861
+ 'r8sint',
1862
+ 'rg8uint',
1863
+ 'rg8sint',
1864
+ 'rgba8uint',
1865
+ 'rgba8sint',
1866
+ 'r16uint',
1867
+ 'r16sint',
1868
+ 'rg16uint',
1869
+ 'rg16sint',
1870
+ 'rgba16uint',
1871
+ 'rgba16sint',
1872
+ 'rgb10a2uint',
1873
'rgba16float',
1874
'r32float',
1875
] as const;
0 commit comments