소스 검색

Add missing extension names

Popov72 4 년 전
부모
커밋
927e6ff6f9
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      src/LibDeclarations/webgpu.d.ts

+ 3 - 1
src/LibDeclarations/webgpu.d.ts

@@ -48,7 +48,9 @@ declare global {
     | "texture-compression-bc"
     | "timestamp-query"
     | "pipeline-statistics-query"
-    | "depth-clamping";
+    | "depth-clamping"
+    | "depth24unorm-stencil8"
+    | "depth32float-stencil8";
   export type GPUAddressMode = "clamp-to-edge" | "repeat" | "mirror-repeat";
   export type GPUBindingType =
     | "uniform-buffer"