mirror of
https://github.com/gfx-rs/wgpu.git
synced 2026-04-22 03:02:01 -04:00
Fix Obscured Warning (#7193)
This commit is contained in:
committed by
GitHub
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
|
||||
|
||||
Reference in New Issue
Block a user