File tree 1 file changed +0
-6
lines changed
1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -69,40 +69,34 @@ pub use wgt::{
69
69
/// Re-export of our `wgpu-core` dependency.
70
70
///
71
71
#[ cfg( wgpu_core) ]
72
- #[ doc( inline) ]
73
72
pub use :: wgc as core;
74
73
75
74
/// Re-export of our `wgpu-hal` dependency.
76
75
///
77
76
///
78
77
#[ cfg( wgpu_core) ]
79
- #[ doc( inline) ]
80
78
pub use :: hal;
81
79
82
80
/// Re-export of our `naga` dependency.
83
81
///
84
82
#[ cfg( wgpu_core) ]
85
83
#[ cfg_attr( docsrs, doc( cfg( any( wgpu_core, naga) ) ) ) ]
86
- #[ doc( inline) ]
87
84
// We re-export wgpu-core's re-export of naga, as we may not have direct access to it.
88
85
pub use :: wgc:: naga;
89
86
/// Re-export of our `naga` dependency.
90
87
///
91
88
#[ cfg( all( not( wgpu_core) , naga) ) ]
92
89
#[ cfg_attr( docsrs, doc( cfg( any( wgpu_core, naga) ) ) ) ]
93
- #[ doc( inline) ]
94
90
// If that's not available, we re-export our own.
95
91
pub use naga;
96
92
97
- #[ doc( inline) ]
98
93
/// Re-export of our `raw-window-handle` dependency.
99
94
///
100
95
pub use raw_window_handle as rwh;
101
96
102
97
/// Re-export of our `web-sys` dependency.
103
98
///
104
99
#[ cfg( any( webgl, webgpu) ) ]
105
- #[ doc( inline) ]
106
100
pub use web_sys;
107
101
108
102
// wasm-only types, we try to keep as many types non-platform
You can’t perform that action at this time.
0 commit comments