Skip to content

Commit

Permalink
Debug adapters
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasmerlin committed Oct 9, 2024
1 parent c678013 commit 6c52a97
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions crates/egui_kittest/src/wgpu.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ impl TestRenderer {
let instance = wgpu::Instance::new(InstanceDescriptor::default());

let adapters = instance.enumerate_adapters(Backends::all());

dbg!(&adapters);

let adapter = adapters.first().expect("No adapter found");

let (device, queue) = pollster::block_on(adapter.request_device(
Expand Down

0 comments on commit 6c52a97

Please sign in to comment.