From 8e606c2619d0e92b51cdb7e0064cf0ca4cf7f323 Mon Sep 17 00:00:00 2001 From: Vecvec Date: Tue, 19 Dec 2023 08:00:00 +1300 Subject: [PATCH] remove a line that printed log "Created blas ..." in device create tlas --- wgpu-core/src/device/ray_tracing.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wgpu-core/src/device/ray_tracing.rs b/wgpu-core/src/device/ray_tracing.rs index f1fcf7c9f9..f329847f3c 100644 --- a/wgpu-core/src/device/ray_tracing.rs +++ b/wgpu-core/src/device/ray_tracing.rs @@ -237,7 +237,7 @@ impl Global { }; let id = fid.assign(tlas); - log::info!("Created blas {:?} with {:?}", id.0, desc); + log::info!("Created tlas {:?} with {:?}", id.0, desc); device.trackers.lock().tlas_s.insert_single(id.0, id.1);