pub trait ID2D1CommandSink3_Impl: Sized + ID2D1CommandSink2_Impl {
    // Required method
    fn DrawSpriteBatch(
        &self,
        spritebatch: Option<&ID2D1SpriteBatch>,
        startindex: u32,
        spritecount: u32,
        bitmap: Option<&ID2D1Bitmap>,
        interpolationmode: D2D1_BITMAP_INTERPOLATION_MODE,
        spriteoptions: D2D1_SPRITE_OPTIONS
    ) -> Result<()>;
}

Required Methods§

fn DrawSpriteBatch( &self, spritebatch: Option<&ID2D1SpriteBatch>, startindex: u32, spritecount: u32, bitmap: Option<&ID2D1Bitmap>, interpolationmode: D2D1_BITMAP_INTERPOLATION_MODE, spriteoptions: D2D1_SPRITE_OPTIONS ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§