[][src]Struct winapi::um::d3d12::ID3D12CommandQueue

#[repr(C)]
pub struct ID3D12CommandQueue { pub lpVtbl: *const ID3D12CommandQueueVtbl, }

Fields

lpVtbl: *const ID3D12CommandQueueVtbl

Methods

impl ID3D12CommandQueue[src]

pub unsafe fn UpdateTileMappings(
    &self,
    pResource: *mut ID3D12Resource,
    NumResourceRegions: UINT,
    pResourceRegionStartCoordinates: *const D3D12_TILED_RESOURCE_COORDINATE,
    pResourceRegionSizes: *const D3D12_TILE_REGION_SIZE,
    pHeap: *mut ID3D12Heap,
    NumRanges: UINT,
    pRangeFlags: *const D3D12_TILE_RANGE_FLAGS,
    pHeapRangeStartOffsets: *const UINT,
    pRangeTileCounts: *const UINT,
    Flags: D3D12_TILE_MAPPING_FLAGS
)
[src]

pub unsafe fn CopyTileMappings(
    &self,
    pDstResource: *mut ID3D12Resource,
    pDstRegionStartCoordinate: *const D3D12_TILED_RESOURCE_COORDINATE,
    pSrcResource: *mut ID3D12Resource,
    pSrcRegionStartCoordinate: *const D3D12_TILED_RESOURCE_COORDINATE,
    pRegionSize: *const D3D12_TILE_REGION_SIZE,
    Flags: D3D12_TILE_MAPPING_FLAGS
)
[src]

pub unsafe fn ExecuteCommandLists(
    &self,
    NumCommandLists: UINT,
    ppCommandLists: *const *mut ID3D12CommandList
)
[src]

pub unsafe fn SetMarker(&self, Metadata: UINT, pData: *const c_void, Size: UINT)[src]

pub unsafe fn BeginEvent(
    &self,
    Metadata: UINT,
    pData: *const c_void,
    Size: UINT
)
[src]

pub unsafe fn EndEvent(&self)[src]

pub unsafe fn Signal(&self, pFence: *mut ID3D12Fence, Value: UINT64) -> HRESULT[src]

pub unsafe fn Wait(&self, pFence: *mut ID3D12Fence, Value: UINT64) -> HRESULT[src]

pub unsafe fn GetTimestampFrequency(&self, pFrequency: *mut UINT64) -> HRESULT[src]

pub unsafe fn GetClockCalibration(
    &self,
    pGpuTimestamp: *mut UINT64,
    pCpuTimestamp: *mut UINT64
) -> HRESULT
[src]

pub unsafe fn GetDesc(&self) -> D3D12_COMMAND_QUEUE_DESC[src]

Trait Implementations

impl Interface for ID3D12CommandQueue[src]

impl Deref for ID3D12CommandQueue[src]

type Target = ID3D12Pageable

The resulting type after dereferencing.

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]