pub trait ID3D12GraphicsCommandList9_Impl: Sized + ID3D12GraphicsCommandList8_Impl {
    // Required methods
    fn RSSetDepthBias(
        &self,
        depthbias: f32,
        depthbiasclamp: f32,
        slopescaleddepthbias: f32,
    );
    fn IASetIndexBufferStripCutValue(
        &self,
        ibstripcutvalue: D3D12_INDEX_BUFFER_STRIP_CUT_VALUE,
    );
}

Required Methods§

fn RSSetDepthBias( &self, depthbias: f32, depthbiasclamp: f32, slopescaleddepthbias: f32, )

fn IASetIndexBufferStripCutValue( &self, ibstripcutvalue: D3D12_INDEX_BUFFER_STRIP_CUT_VALUE, )

Object Safety§

This trait is not object safe.

Implementors§