pub trait IDWritePixelSnapping_Impl: Sized {
    // Required methods
    fn IsPixelSnappingDisabled(
        &self,
        clientdrawingcontext: *const c_void
    ) -> Result<BOOL>;
    fn GetCurrentTransform(
        &self,
        clientdrawingcontext: *const c_void,
        transform: *mut DWRITE_MATRIX
    ) -> Result<()>;
    fn GetPixelsPerDip(
        &self,
        clientdrawingcontext: *const c_void
    ) -> Result<f32>;
}

Required Methods§

fn IsPixelSnappingDisabled( &self, clientdrawingcontext: *const c_void ) -> Result<BOOL>

fn GetCurrentTransform( &self, clientdrawingcontext: *const c_void, transform: *mut DWRITE_MATRIX ) -> Result<()>

fn GetPixelsPerDip(&self, clientdrawingcontext: *const c_void) -> Result<f32>

Object Safety§

This trait is not object safe.

Implementors§