From fe8a9b2f95c2e775f2b8a98820cffa80d9bfa63d Mon Sep 17 00:00:00 2001 From: DevJac Date: Tue, 22 Oct 2024 10:04:38 -0600 Subject: [PATCH] Adapter docs tell how to create --- wgpu/src/api/adapter.rs | 3 +++ 1 file changed, 3 insertions(+) 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`]. ///