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