2 implementations of IProxyDrawingContext
ReachFramework (2)
AlphaFlattener\DrawingContext.cs (2)
17internal class DisplayListDrawingContext : IProxyDrawingContext 200internal class BrushProxyDecomposer : IProxyDrawingContext
19 references to IProxyDrawingContext
ReachFramework (19)
AlphaFlattener\DrawingContext.cs (14)
52void IProxyDrawingContext.Comment(string message) 56void IProxyDrawingContext.Push(double opacity, BrushProxy opacityMask) 65void IProxyDrawingContext.Pop() 71void IProxyDrawingContext.DrawGeometry(BrushProxy brush, PenProxy pen, Geometry geometry, Geometry clip, Matrix brushTrans, ProxyDrawingFlags flags) 75((IProxyDrawingContext)(this)).DrawGeometry(brush, null, geometry, clip, brushTrans, flags); 141void IProxyDrawingContext.DrawImage(ImageProxy image, Rect dest, Geometry clip, Matrix trans) 166bool IProxyDrawingContext.DrawGlyphs(GlyphRun glyphrun, Geometry clip, Matrix trans, BrushProxy foreground) 484((IProxyDrawingContext)this).DrawGeometry(one, null, geometry, null, Matrix.Identity, ProxyDrawingFlags.None); 671void IProxyDrawingContext.Comment(string message) 678void IProxyDrawingContext.Push(double opacity, BrushProxy opacityMask) 685void IProxyDrawingContext.Pop() 690void IProxyDrawingContext.DrawGeometry(BrushProxy brush, PenProxy pen, Geometry geometry, Geometry clip, Matrix brushTrans, ProxyDrawingFlags flags) 828void IProxyDrawingContext.DrawImage(ImageProxy image, Rect dest, Geometry clip, Matrix trans) 927bool IProxyDrawingContext.DrawGlyphs(GlyphRun glyphrun, Geometry clip, Matrix trans, BrushProxy foreground)
AlphaFlattener\Flattener.cs (2)
283public void AlphaFlatten(IProxyDrawingContext dc, bool disjoint) 1182private IProxyDrawingContext _dc;
AlphaFlattener\Optimizer.cs (1)
42public void Render(List<PrimitiveInfo> commands, IProxyDrawingContext dc)
AlphaFlattener\PrimitiveRenderer.cs (2)
184public IProxyDrawingContext DC 551private IProxyDrawingContext _dc;