pub trait IDWriteFactory8_Impl: Sized + IDWriteFactory7_Impl {
    // Required method
    fn TranslateColorGlyphRun3(
        &self,
        baselineorigin: &D2D_POINT_2F,
        glyphrun: *const DWRITE_GLYPH_RUN,
        glyphrundescription: *const DWRITE_GLYPH_RUN_DESCRIPTION,
        desiredglyphimageformats: DWRITE_GLYPH_IMAGE_FORMATS,
        paintfeaturelevel: DWRITE_PAINT_FEATURE_LEVEL,
        measuringmode: DWRITE_MEASURING_MODE,
        worldanddpitransform: *const DWRITE_MATRIX,
        colorpaletteindex: u32
    ) -> Result<IDWriteColorGlyphRunEnumerator1>;
}

Required Methods§

fn TranslateColorGlyphRun3( &self, baselineorigin: &D2D_POINT_2F, glyphrun: *const DWRITE_GLYPH_RUN, glyphrundescription: *const DWRITE_GLYPH_RUN_DESCRIPTION, desiredglyphimageformats: DWRITE_GLYPH_IMAGE_FORMATS, paintfeaturelevel: DWRITE_PAINT_FEATURE_LEVEL, measuringmode: DWRITE_MEASURING_MODE, worldanddpitransform: *const DWRITE_MATRIX, colorpaletteindex: u32 ) -> Result<IDWriteColorGlyphRunEnumerator1>

Object Safety§

This trait is not object safe.

Implementors§