3 writes to StrokeBrush
ReachFramework (3)
AlphaFlattener\Flattener.cs (2)
730
gp.Pen.
StrokeBrush
= blendedPenBrush;
1159
ri.Pen.
StrokeBrush
= ri.Pen.StrokeBrush.ApplyTransformCopy(p.Transform);
AlphaFlattener\Primitive.cs (1)
1248
g.Pen.
StrokeBrush
= color.BlendBrush(g.Pen.StrokeBrush);
23 references to StrokeBrush
ReachFramework (23)
AlphaFlattener\DrawingContext.cs (3)
114
geo.Pen.
StrokeBrush
.ApplyTransform(brushTrans);
123
brush = pen.
StrokeBrush
;
765
strokeBrush = pen.
StrokeBrush
;
AlphaFlattener\Flattener.cs (4)
66
if ((gp.Pen != null) && (gp.Pen.
StrokeBrush
.Brush is DrawingBrush))
699
BrushProxy blendedPenBrush = gp.Pen == null ? null : gp.Pen.
StrokeBrush
;
1156
if (ri.Pen != null && ri.Pen.
StrokeBrush
!= null)
1159
ri.Pen.StrokeBrush = ri.Pen.
StrokeBrush
.ApplyTransformCopy(p.Transform);
AlphaFlattener\Optimizer.cs (1)
343
bp = gp.Pen.
StrokeBrush
;
AlphaFlattener\Primitive.cs (13)
679
Brush = Pen.
StrokeBrush
;
786
if (_pen != null && _pen.
StrokeBrush
!= null && _pen.
StrokeBrush
.Brush is DrawingBrush)
1192
b = Pen.
StrokeBrush
;
1211
b = Pen.
StrokeBrush
;
1246
g.Pen.
StrokeBrush
.OpacityOnly = true;
1248
g.Pen.StrokeBrush = color.BlendBrush(g.Pen.
StrokeBrush
);
1327
Pen.
StrokeBrush
.ApplyTransform(Transform);
1356
if ((Pen != null) && (Pen.
StrokeBrush
.Brush is TileBrush))
1530
Brush realBrush = Pen.
StrokeBrush
.GetRealBrush();
1532
opacity *= Pen.
StrokeBrush
.Opacity;
1623
if (_pen != null && _pen.
StrokeBrush
!= null)
1625
cost += _pen.
StrokeBrush
.GetDrawingCost(bounds.Size);
AlphaFlattener\PrimitiveList.cs (1)
237
return gp.Pen.
StrokeBrush
.IsWhite();
AlphaFlattener\PrimitiveRenderer.cs (1)
71
_brush = _pen.
StrokeBrush
;