#[repr(C)]pub struct IUnityGraphicsD3D12 {
pub GetDevice: Option<unsafe extern "system" fn() -> *mut ID3D12Device>,
pub GetCommandQueue: Option<unsafe extern "system" fn() -> *mut ID3D12CommandQueue>,
pub GetFrameFence: Option<unsafe extern "system" fn() -> *mut ID3D12Fence>,
pub GetNextFrameFenceValue: Option<unsafe extern "system" fn() -> UINT64>,
pub GetResourceState: Option<unsafe extern "system" fn(resource: *mut ID3D12Resource, outState: *mut D3D12_RESOURCE_STATES) -> bool>,
pub SetResourceState: Option<unsafe extern "system" fn(resource: *mut ID3D12Resource, state: D3D12_RESOURCE_STATES)>,
}
Fields§
§GetDevice: Option<unsafe extern "system" fn() -> *mut ID3D12Device>
§GetCommandQueue: Option<unsafe extern "system" fn() -> *mut ID3D12CommandQueue>
§GetFrameFence: Option<unsafe extern "system" fn() -> *mut ID3D12Fence>
§GetNextFrameFenceValue: Option<unsafe extern "system" fn() -> UINT64>
§GetResourceState: Option<unsafe extern "system" fn(resource: *mut ID3D12Resource, outState: *mut D3D12_RESOURCE_STATES) -> bool>
§SetResourceState: Option<unsafe extern "system" fn(resource: *mut ID3D12Resource, state: D3D12_RESOURCE_STATES)>
Trait Implementations§
Source§impl Clone for IUnityGraphicsD3D12
impl Clone for IUnityGraphicsD3D12
Source§fn clone(&self) -> IUnityGraphicsD3D12
fn clone(&self) -> IUnityGraphicsD3D12
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for IUnityGraphicsD3D12
impl Default for IUnityGraphicsD3D12
Source§fn default() -> IUnityGraphicsD3D12
fn default() -> IUnityGraphicsD3D12
Returns the “default value” for a type. Read more
impl Copy for IUnityGraphicsD3D12
Auto Trait Implementations§
impl Freeze for IUnityGraphicsD3D12
impl RefUnwindSafe for IUnityGraphicsD3D12
impl Send for IUnityGraphicsD3D12
impl Sync for IUnityGraphicsD3D12
impl Unpin for IUnityGraphicsD3D12
impl UnwindSafe for IUnityGraphicsD3D12
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more