소스 검색

Remove logs

Popov72 4 년 전
부모
커밋
a24259ea10
1개의 변경된 파일0개의 추가작업 그리고 12개의 파일을 삭제
  1. 0 12
      src/Engines/webgpuEngine.ts

+ 0 - 12
src/Engines/webgpuEngine.ts

@@ -1769,27 +1769,15 @@ export class WebGPUEngine extends Engine {
             }
             else if (texture.isCube) {
                 internalTexture = this.emptyCubeTexture;
-                if (dbgGenerateLogs) {
-                    console.log("Using a temporary empty cube texture. internalTexture.uniqueId=", texture.uniqueId, texture);
-                }
             }
             else if (texture.is3D) {
                 internalTexture = this.emptyTexture3D;
-                if (dbgGenerateLogs) {
-                    console.log("Using a temporary empty 3D texture. internalTexture.uniqueId=", texture.uniqueId, texture);
-                }
             }
             else if (texture.is2DArray) {
                 internalTexture = this.emptyTexture2DArray;
-                if (dbgGenerateLogs) {
-                    console.log("Using a temporary empty 2D array texture. internalTexture.uniqueId=", texture.uniqueId, texture);
-                }
             }
             else {
                 internalTexture = this.emptyTexture;
-                if (dbgGenerateLogs) {
-                    console.log("Using a temporary empty texture. internalTexture.uniqueId=", texture.uniqueId, texture);
-                }
             }
 
             if (internalTexture && !internalTexture.isMultiview) {