Popov72 5 년 전
부모
커밋
6890821187
2개의 변경된 파일6개의 추가작업 그리고 6개의 파일을 삭제
  1. 1 1
      src/Engines/WebGPU/webgpuConstants.ts
  2. 5 5
      src/LibDeclarations/webgpu.d.ts

+ 1 - 1
src/Engines/WebGPU/webgpuConstants.ts

@@ -345,7 +345,7 @@ export enum StoreOp {
 export enum QueryType {
     Occlusion = "occlusion",
     PipelineStatistics = "pipeline-statistics",
-    Timestamp = "timestamp"    
+    Timestamp = "timestamp"
 }
 
 /** @hidden */

+ 5 - 5
src/LibDeclarations/webgpu.d.ts

@@ -346,11 +346,11 @@ interface GPUSamplerBindingLayout {
 }
 
 type GPUTextureSampleType =
-  | "float"
-  | "unfilterable-float"
-  | "depth"
-  | "sint"
-  | "uint";
+    | "float"
+    | "unfilterable-float"
+    | "depth"
+    | "sint"
+    | "uint";
 
 interface GPUTextureBindingLayout {
     sampleType?: GPUTextureSampleType; /* default="float" */