diff options
Diffstat (limited to 'components/webgpu/lib.rs')
-rw-r--r-- | components/webgpu/lib.rs | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/components/webgpu/lib.rs b/components/webgpu/lib.rs index 0eb10a0db77..4730136d3b7 100644 --- a/components/webgpu/lib.rs +++ b/components/webgpu/lib.rs @@ -2,11 +2,10 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ -#[macro_use] -extern crate log; -#[macro_use] -pub extern crate wgpu_core as wgpu; -pub extern crate wgpu_types as wgt; +use log::{error, warn}; +use wgpu::gfx_select; +pub use wgpu_core as wgpu; +pub use wgpu_types as wgt; pub mod identity; |