diff --git a/wgpu/src/api/adapter.rs b/wgpu/src/api/adapter.rs index 034ea37ab..10c6f4460 100644 --- a/wgpu/src/api/adapter.rs +++ b/wgpu/src/api/adapter.rs @@ -5,6 +5,9 @@ use crate::*; /// Handle to a physical graphics and/or compute device. /// +/// Adapters can be created using [`Instance::request_adapter`] +/// or other [`Instance`] methods. +/// /// Adapters can be used to open a connection to the corresponding [`Device`] /// on the host system by using [`Adapter::request_device`]. ///