[][src]Struct winapi::um::d3d11shader::ID3D11FunctionLinkingGraph

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

Fields

lpVtbl: *const ID3D11FunctionLinkingGraphVtbl

Implementations

impl ID3D11FunctionLinkingGraph[src]

pub unsafe fn CreateModuleInstance(
    &self,
    ppModuleInstance: *mut *mut ID3D11ModuleInstance,
    ppErrorBuffer: *mut *mut ID3DBlob
) -> HRESULT
[src]

pub unsafe fn SetInputSignature(
    &self,
    pInputParameters: *const D3D11_PARAMETER_DESC,
    cInputParameters: UINT,
    ppInputNode: *mut *mut ID3D11LinkingNode
) -> HRESULT
[src]

pub unsafe fn SetOutputSignature(
    &self,
    pOutputParameters: *const D3D11_PARAMETER_DESC,
    cOutputParameters: UINT,
    ppOutputNode: *mut *mut ID3D11LinkingNode
) -> HRESULT
[src]

pub unsafe fn CallFunction(
    &self,
    pModuleInstanceNamespace: LPCSTR,
    pModuleWithFunctionPrototype: *mut ID3D11Module,
    pFunctionName: LPCSTR,
    ppCallNode: *mut *mut ID3D11LinkingNode
) -> HRESULT
[src]

pub unsafe fn PassValue(
    &self,
    pSrcNode: *mut ID3D11LinkingNode,
    SrcParameterIndex: INT,
    pDstNode: *mut ID3D11LinkingNode,
    DstParameterIndex: INT
) -> HRESULT
[src]

pub unsafe fn PassValueWithSwizzle(
    &self,
    pSrcNode: *mut ID3D11LinkingNode,
    SrcParameterIndex: INT,
    pSrcSwizzle: LPCSTR,
    pDstNode: *mut ID3D11LinkingNode,
    DstParameterIndex: INT,
    pDstSwizzle: LPCSTR
) -> HRESULT
[src]

pub unsafe fn GetLastError(&self, ppErrorBuffer: *mut *mut ID3DBlob) -> HRESULT[src]

pub unsafe fn GenerateHlsl(
    &self,
    uFlags: UINT,
    ppBuffer: *mut *mut ID3DBlob
) -> HRESULT
[src]

Methods from Deref<Target = IUnknown>

pub unsafe fn QueryInterface(
    &self,
    riid: REFIID,
    ppvObject: *mut *mut c_void
) -> HRESULT
[src]

pub unsafe fn AddRef(&self) -> ULONG[src]

pub unsafe fn Release(&self) -> ULONG[src]

Trait Implementations

impl Deref for ID3D11FunctionLinkingGraph[src]

type Target = IUnknown

The resulting type after dereferencing.

impl Interface for ID3D11FunctionLinkingGraph[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.