[hal] Minor doc clarification. (#8087)

Don't use the term "single-threaded", since it's confusing. Just say
what you mean.
This commit is contained in:
Jim Blandy 2025-08-12 09:54:04 -07:00 committed by GitHub
parent a96a6cd63b
commit 01b3204e7f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1053,9 +1053,9 @@ pub trait Queue: WasmNotSendSync {
/// Update `fence` to `value` when the operation is complete. See /// Update `fence` to `value` when the operation is complete. See
/// [`Fence`] for details. /// [`Fence`] for details.
/// ///
/// A `wgpu_hal` queue is "single threaded": all command buffers are /// All command buffers submitted to a `wgpu_hal` queue are executed in the
/// executed in the order they're submitted, with each buffer able to see /// order they're submitted, with each buffer able to observe the effects of
/// previous buffers' results. Specifically: /// previous buffers' execution. Specifically:
/// ///
/// - If two calls to `submit` on a single `Queue` occur in a particular /// - If two calls to `submit` on a single `Queue` occur in a particular
/// order (that is, they happen on the same thread, or on two threads that /// order (that is, they happen on the same thread, or on two threads that