Procházet zdrojové kódy

Add missing extension names

Popov72 před 4 roky
rodič
revize
927e6ff6f9
1 změnil soubory, kde provedl 3 přidání a 1 odebrání
  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"