From aae428b0fbe098164aba35687a832f7b7f80b665 Mon Sep 17 00:00:00 2001 From: Vecvec Date: Thu, 20 Feb 2025 08:59:03 +1300 Subject: [PATCH] State BLAS functions are impl'd --- wgpu-types/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wgpu-types/src/lib.rs b/wgpu-types/src/lib.rs index 98456eb836..16559e778d 100644 --- a/wgpu-types/src/lib.rs +++ b/wgpu-types/src/lib.rs @@ -7163,8 +7163,8 @@ bitflags::bitflags!( /// Allow for incremental updates (no change in size), currently this is unimplemented /// and will build as normal (this is fine, update vs build should be unnoticeable) const ALLOW_UPDATE = 1 << 0; - /// Allow the acceleration structure to be compacted in a copy operation, the function - /// to compact is not currently implemented. + /// Allow the acceleration structure to be compacted in a copy operation + /// (`Blas::prepare_for_compaction`, `CommandEncoder::compact_blas`). const ALLOW_COMPACTION = 1 << 1; /// Optimize for fast ray tracing performance, recommended if the geometry is unlikely /// to change (e.g. in a game: non-interactive scene geometry)