mirror of
https://github.com/gfx-rs/wgpu.git
synced 2025-12-08 21:26:17 +00:00
Fix Obscured Warning (#7193)
This commit is contained in:
parent
77763b15b3
commit
f781a6b6ca
@ -1,6 +1,7 @@
|
||||
//! RenderDoc integration - <https://renderdoc.org/>
|
||||
|
||||
use std::{ffi, os, ptr, string::String};
|
||||
use alloc::string::String;
|
||||
use core::{ffi, ptr};
|
||||
|
||||
/// The dynamically loaded RenderDoc API function table
|
||||
#[repr(C)]
|
||||
@ -109,7 +110,7 @@ impl Default for RenderDoc {
|
||||
}
|
||||
}
|
||||
/// An implementation specific handle
|
||||
pub type Handle = *mut os::raw::c_void;
|
||||
pub type Handle = *mut ffi::c_void;
|
||||
|
||||
impl RenderDoc {
|
||||
/// Start a RenderDoc frame capture
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user