pub trait ID3D11TracingDevice_Impl: Sized {
    // Required methods
    fn SetShaderTrackingOptionsByType(
        &self,
        resourcetypeflags: u32,
        options: u32,
    ) -> Result<()>;
    fn SetShaderTrackingOptions(
        &self,
        pshader: Option<&IUnknown>,
        options: u32,
    ) -> Result<()>;
}

Required Methods§

fn SetShaderTrackingOptionsByType( &self, resourcetypeflags: u32, options: u32, ) -> Result<()>

fn SetShaderTrackingOptions( &self, pshader: Option<&IUnknown>, options: u32, ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§