16 writes to Brush
ReachFramework (16)
AlphaFlattener\DrawingContext.cs (2)
130geo.Brush = brush.ApplyTransformCopy(brushTrans); 182Brush = foreground
AlphaFlattener\Flattener.cs (4)
212stroke.Brush = null; 261gp.Brush = null; 520gi.Brush = bi.BlendBrush(bj); 720gp.Brush = blendedBrush;
AlphaFlattener\MetroDevice.cs (2)
213g.Brush = BrushProxy.CreateBrush(brush, bounds); 281g.Brush = BrushProxy.CreateBrush(foreground, g.GetRectBounds(needBounds));
AlphaFlattener\Primitive.cs (8)
337gp.Brush = BrushProxy.CreateUserBrush(gd.Brush, bounds, drawingToWorldTransformHint, new TreeWalkProgress()); 393Brush = BrushProxy.CreateUserBrush( 430Brush = BrushProxy.CreateBrush(db, id.Rect), 677Brush = Pen.StrokeBrush; 1094Brush = Brush.Clone(); 1096Brush = Brush.PushOpacity(Opacity, OpacityMask); 1233g.Brush = g.Brush.Clone(); 1236g.Brush = color.BlendBrush(g.Brush);
54 references to Brush
ReachFramework (54)
AlphaFlattener\Flattener.cs (10)
198if (gp != null && gp.Brush != null && gp.Pen != null && 253if ((gp.Brush != null) && (gp.Pen != null)) 264else if ((gp.Pen != null) || (gp.Brush != null)) 513if ((gi != null) && (gi.Brush != null) && 514(gj != null) && (gj.Brush != null)) 517BrushProxy bi = gi.Brush.ApplyTransformCopy(gi.Transform); 518BrushProxy bj = gj.Brush.ApplyTransformCopy(gj.Transform); 684under = qp.Brush; 691BrushProxy blendedBrush = gp.Brush; 1121ri.Brush = p.Brush;
AlphaFlattener\Optimizer.cs (1)
335BrushProxy bp = gp.Brush;
AlphaFlattener\Primitive.cs (38)
348if ((gp.Brush == null) && (gp.Pen == null)) 355if ((gp.Brush != null) && (gp.Pen != null)) // split 675Debug.Assert(Brush == null, "no brush expected"); 1092if (Brush != null) 1094Brush = Brush.Clone(); 1096Brush = Brush.PushOpacity(Opacity, OpacityMask); 1112if ((Geometry != null) && (Pen != null) || (Brush != null)) 1145if (Brush == null) 1151Brush.DrawGeometry(dc, p, Geometry); // BrushProxy.GetRealBrush can't handle OpacityMask 1184BrushProxy b = Brush; 1203BrushProxy b = Brush; 1231if (g.Brush != null) 1233g.Brush = g.Brush.Clone(); 1234g.Brush.OpacityOnly = true; 1236g.Brush = color.BlendBrush(g.Brush); 1254if ((Brush == null) && (Pen == null)) 1264if (Brush == null) 1271return Brush.IsOpaque(); 1274return Pen.IsOpaque() && Brush.IsOpaque(); 1287if ((Brush == null) && (Pen == null)) 1292if (Brush == null) 1299return Brush.IsTransparent(); 1302return Pen.IsTransparent() && Brush.IsTransparent(); 1311Debug.Assert((Brush != null) || (Pen != null), "empty primitive"); 1334Brush?.ApplyTransform(Transform); 1361if (Brush != null) 1363TileBrush tb = Brush.Brush as TileBrush; 1371if (!Brush.IsTiled(geometryBounds)) 1373Brush.CloneRealBrush(); 1375tb = Brush.Brush as TileBrush; 1435if (!empty && !Brush.IsViewportCoverBounds(geometryBounds)) 1506if (Brush != null) 1510Brush realBrush = Brush.GetRealBrush(); 1512opacity *= Brush.Opacity; 1679if ((GlyphRun != null) && (Pen != null) || (Brush != null)) 1685dc.DrawGlyphRun(Brush.GetRealBrush(), GlyphRun); 2196if ((gp != null) && (gp.Brush != null) && (gp.Pen == null)) 2198BrushProxy bp = gp.Brush;
AlphaFlattener\PrimitiveList.cs (5)
185if ((gp != null) && (gp.Brush != null) && (gp.Pen == null)) 187Brush b = gp.Brush.Brush; 222if ((gp.Brush != null) && (gp.Pen == null)) 224return gp.Brush.IsWhite(); 227if ((gp.Pen != null) && (gp.Brush == null))