pub trait IDirect3DStateBlock9Ext: AsSafe<IDirect3DStateBlock9> {
    fn apply(&self) -> Result<(), MethodError> { ... }
fn capture(&self) -> Result<(), MethodError> { ... }
fn get_device(&self) -> Result<Device, MethodError> { ... } }
Expand description

[docs.microsoft.com] IDirect3DStateBlock9 extension methods

Methods

thindxdocs.microsoft.comDescription
applyApplyApply the state block to the current device state.
captureCaptureCapture the current value of states that are included in a stateblock.
get_deviceGetDeviceGets the device.

Provided methods

[docs.microsoft.com] IDirect3DStateBlock9::Apply

Apply the state block to the current device state.

Returns

[docs.microsoft.com] IDirect3DStateBlock9::Capture

Capture the current value of states that are included in a stateblock.

Returns

[docs.microsoft.com] IDirect3DStateBlock9::GetDevice

Gets the device.

Returns

Implementors