We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ec6b3f commit 6944d38Copy full SHA for 6944d38
pipelined/bevy_render2/src/renderer/mod.rs
@@ -1,6 +1,7 @@
1
mod graph_runner;
2
mod render_device;
3
4
+use bevy_utils::tracing::info;
5
pub use graph_runner::*;
6
pub use render_device::*;
7
@@ -40,6 +41,9 @@ pub async fn initialize_renderer(
40
41
.await
42
.expect("Unable to find a GPU! Make sure you have installed required drivers!");
43
44
+ #[cfg(not(target_arch = "wasm32"))]
45
+ info!("{:?}", adapter.get_info());
46
+
47
#[cfg(feature = "trace")]
48
let trace_path = {
49
let path = std::path::Path::new("wgpu_trace");
0 commit comments