We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0cf78c commit 07d4db5Copy full SHA for 07d4db5
examples/features/src/framework.rs
@@ -282,6 +282,9 @@ impl ExampleContext {
282
// Make sure we use the texture resolution limits from the adapter, so we can support images the size of the surface.
283
let needed_limits = E::required_limits().using_resolution(adapter.limits());
284
285
+ let info = adapter.get_info();
286
+ log::info!("Selected adapter: {} ({:?})", info.name, info.backend);
287
+
288
let (device, queue) = adapter
289
.request_device(&wgpu::DeviceDescriptor {
290
label: None,
0 commit comments