3 writes to StrokeBrush
ReachFramework (3)
AlphaFlattener\Flattener.cs (2)
723
gp.Pen.
StrokeBrush
= blendedPenBrush;
1156
ri.Pen.
StrokeBrush
= ri.Pen.StrokeBrush.ApplyTransformCopy(p.Transform);
AlphaFlattener\Primitive.cs (1)
1244
g.Pen.
StrokeBrush
= color.BlendBrush(g.Pen.StrokeBrush);
23 references to StrokeBrush
ReachFramework (23)
AlphaFlattener\DrawingContext.cs (3)
109
geo.Pen.
StrokeBrush
.ApplyTransform(brushTrans);
118
brush = pen.
StrokeBrush
;
762
strokeBrush = pen.
StrokeBrush
;
AlphaFlattener\Flattener.cs (4)
60
if ((gp.Pen != null) && (gp.Pen.
StrokeBrush
.Brush is DrawingBrush))
692
BrushProxy blendedPenBrush = gp.Pen?.
StrokeBrush
;
1153
if (ri.Pen != null && ri.Pen.
StrokeBrush
!= null)
1156
ri.Pen.StrokeBrush = ri.Pen.
StrokeBrush
.ApplyTransformCopy(p.Transform);
AlphaFlattener\Optimizer.cs (1)
339
bp = gp.Pen.
StrokeBrush
;
AlphaFlattener\Primitive.cs (13)
677
Brush = Pen.
StrokeBrush
;
784
if (_pen != null && _pen.
StrokeBrush
!= null && _pen.
StrokeBrush
.Brush is DrawingBrush)
1188
b = Pen.
StrokeBrush
;
1207
b = Pen.
StrokeBrush
;
1242
g.Pen.
StrokeBrush
.OpacityOnly = true;
1244
g.Pen.StrokeBrush = color.BlendBrush(g.Pen.
StrokeBrush
);
1323
Pen.
StrokeBrush
.ApplyTransform(Transform);
1349
if ((Pen != null) && (Pen.
StrokeBrush
.Brush is TileBrush))
1529
Brush realBrush = Pen.
StrokeBrush
.GetRealBrush();
1531
opacity *= Pen.
StrokeBrush
.Opacity;
1622
if (_pen != null && _pen.
StrokeBrush
!= null)
1624
cost += _pen.
StrokeBrush
.GetDrawingCost(bounds.Size);
AlphaFlattener\PrimitiveList.cs (1)
229
return gp.Pen.
StrokeBrush
.IsWhite();
AlphaFlattener\PrimitiveRenderer.cs (1)
66
_brush = _pen.
StrokeBrush
;