Skip to content

Commit

Permalink
Roll types to 0.1.46 (#3966)
Browse files Browse the repository at this point in the history
  • Loading branch information
kainino0x committed Sep 25, 2024
1 parent 2cce943 commit e46cff2
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 21 deletions.
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"@types/w3c-image-capture": "^1.0.10",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"@webgpu/types": "^0.1.43",
"@webgpu/types": "^0.1.46",
"ansi-colors": "4.1.3",
"babel-plugin-add-header-comment": "^1.0.3",
"babel-plugin-const-enum": "^1.2.0",
Expand Down
28 changes: 15 additions & 13 deletions src/webgpu/capability_info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -817,19 +817,21 @@ export const kFeatureNameInfo: {
readonly [k in GPUFeatureName]: {};
} =
/* prettier-ignore */ {
'bgra8unorm-storage': {},
'depth-clip-control': {},
'depth32float-stencil8': {},
'texture-compression-bc': {},
'texture-compression-etc2': {},
'texture-compression-astc': {},
'timestamp-query': {},
'indirect-first-instance': {},
'shader-f16': {},
'rg11b10ufloat-renderable': {},
'float32-filterable': {},
'clip-distances': {},
'dual-source-blending': {},
'bgra8unorm-storage': {},
'depth-clip-control': {},
'depth32float-stencil8': {},
'texture-compression-bc': {},
'texture-compression-bc-sliced-3d': {},
'texture-compression-etc2': {},
'texture-compression-astc': {},
'texture-compression-astc-sliced-3d': {},
'timestamp-query': {},
'indirect-first-instance': {},
'shader-f16': {},
'rg11b10ufloat-renderable': {},
'float32-filterable': {},
'clip-distances': {},
'dual-source-blending': {},
};
/** List of all GPUFeatureName values. */
export const kFeatureNames = keysOf(kFeatureNameInfo);
Expand Down
1 change: 1 addition & 0 deletions src/webgpu/util/texture/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,7 @@ export function reifyTextureViewDescriptor(
format,
dimension,
aspect,
usage: texture.usage,
baseMipLevel,
mipLevelCount,
baseArrayLayer,
Expand Down

0 comments on commit e46cff2

Please sign in to comment.