Trait windows::Win32::Graphics::Direct2D::ID2D1BitmapBrush_Impl
pub trait ID2D1BitmapBrush_Impl: Sized + ID2D1Brush_Impl {
// Required methods
fn SetExtendModeX(&self, extendmodex: D2D1_EXTEND_MODE);
fn SetExtendModeY(&self, extendmodey: D2D1_EXTEND_MODE);
fn SetInterpolationMode(
&self,
interpolationmode: D2D1_BITMAP_INTERPOLATION_MODE,
);
fn SetBitmap(&self, bitmap: Option<&ID2D1Bitmap>);
fn GetExtendModeX(&self) -> D2D1_EXTEND_MODE;
fn GetExtendModeY(&self) -> D2D1_EXTEND_MODE;
fn GetInterpolationMode(&self) -> D2D1_BITMAP_INTERPOLATION_MODE;
fn GetBitmap(&self, bitmap: *mut Option<ID2D1Bitmap>);
}
Required Methods§
fn SetExtendModeX(&self, extendmodex: D2D1_EXTEND_MODE)
fn SetExtendModeY(&self, extendmodey: D2D1_EXTEND_MODE)
fn SetInterpolationMode( &self, interpolationmode: D2D1_BITMAP_INTERPOLATION_MODE, )
fn SetBitmap(&self, bitmap: Option<&ID2D1Bitmap>)
fn GetExtendModeX(&self) -> D2D1_EXTEND_MODE
fn GetExtendModeY(&self) -> D2D1_EXTEND_MODE
fn GetInterpolationMode(&self) -> D2D1_BITMAP_INTERPOLATION_MODE
fn GetBitmap(&self, bitmap: *mut Option<ID2D1Bitmap>)
Object Safety§
This trait is not object safe.