Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion getting-started/adapter-and-device/the-adapter.md
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ Inspecting the adapter

The adapter object provides **information about the underlying implementation** and hardware, and about what it is able or not to do. It advertises the following information:

- **Limits** regroup all the **maximum and minimum** values that may limit the behavior of the underlying GPU and its driver. A typical examples is the maximum texture size. Supported limits are retrieved using `wgpuAdapterGetLimits`.
- **Limits** regroup all the **maximum and minimum** values that may limit the behavior of the underlying GPU and its driver. A typical example is the maximum texture size. Supported limits are retrieved using `wgpuAdapterGetLimits`.
- **Features** are non-mandatory **extensions** of WebGPU, that adapters may or may not support. They can be listed using `wgpuAdapterEnumerateFeatures` or tested individually with `wgpuAdapterHasFeature`.
- **Properties** are extra information about the adapter, like its name, vendor, etc. Properties are retrieved using `wgpuAdapterGetProperties`.

Expand Down