27 writes to Clip
ReachFramework (27)
AlphaFlattener\DrawingContext.cs (3)
134
geo.
Clip
= clip;
158
Clip
= clip,
180
Clip
= clip,
AlphaFlattener\Flattener.cs (3)
158
ntree.
Clip
= null;
226
tree.
Clip
= clip;
234
tree.
Clip
= Utility.Intersect(transclip, clip, Matrix.Identity, out empty);
AlphaFlattener\MetroDevice.cs (4)
170
Clip
= _clip,
256
Clip
= _clip,
282
g.
Clip
= _clip;
348
c.
Clip
= Utility.Intersect(clip, _clip, Matrix.Identity, out empty); // Combined with inherited attributes
AlphaFlattener\Primitive.cs (15)
522
primitive.
Clip
= dg.ClipGeometry;
904
Clip
= worldGeometry
970
tilePrimitive.
Clip
= new RectangleGeometry(tileBounds);
977
tilePrimitive.
Clip
= new RectangleGeometry(
1131
Clip
= null;
1159
Clip
= saveClip;
1393
Clip
= Utility.Intersect(Clip, Geometry, Matrix.Identity, out empty);
1411
Clip
= Utility.Intersect(Clip, viewportGeometry, Matrix.Identity, out empty);
1453
Clip
= Utility.Intersect(Clip, contentGeometry, Matrix.Identity, out empty);
1495
Clip
= null;
1716
Clip
= _bounds;
1719
Clip
= Utility.Exclude(Clip, g, Matrix.Identity);
1842
Clip
= Utility.TransformGeometry(new RectangleGeometry(DstRect), Transform);
1845
Clip
= Utility.Exclude(Clip, g, Matrix.Identity);
1935
Clip
= null;
AlphaFlattener\PrimitiveList.cs (2)
277
p.
Clip
= null;
285
p.
Clip
= null;
35 references to Clip
ReachFramework (35)
AlphaFlattener\Flattener.cs (6)
124
Geometry transclip = Utility.TransformGeometry(tree.
Clip
, transform);
224
if (tree.
Clip
== null)
230
Geometry transclip = Utility.TransformGeometry(tree.
Clip
, transform);
238
empty = Utility.IsEmpty(tree.
Clip
, Matrix.Identity);
1108
Clip = primitive.
Clip
,
1170
ri.RenderImage(ip.Image, ip.DstRect, ip.
Clip
, ip.Transform, desp);
AlphaFlattener\Optimizer.cs (1)
75
Geometry geometry = Utility.Intersect(primitive.GetShapeGeometry(), primitive.
Clip
, Matrix.Identity, out empty);
AlphaFlattener\Primitive.cs (23)
164
if (shape != null &&
Clip
!= null)
168
shape = Utility.Intersect(shape,
Clip
, Matrix.Identity, out empty);
551
if (
Clip
!= null)
553
dc.PushClip(
Clip
);
1125
Geometry saveClip =
Clip
;
1130
Geometry = Utility.Intersect(Geometry,
Clip
, Matrix.Identity, out empty);
1393
Clip = Utility.Intersect(
Clip
, Geometry, Matrix.Identity, out empty);
1411
Clip = Utility.Intersect(
Clip
, viewportGeometry, Matrix.Identity, out empty);
1453
Clip = Utility.Intersect(
Clip
, contentGeometry, Matrix.Identity, out empty);
1473
if (
Clip
!= null && Geometry != null && Pen == null)
1477
Geometry geometryClip =
Clip
;
1714
if (
Clip
== null)
1719
Clip = Utility.Exclude(
Clip
, g, Matrix.Identity);
1721
if (
Clip
== null)
1840
if (
Clip
== null)
1845
Clip = Utility.Exclude(
Clip
, g, Matrix.Identity);
1847
if (
Clip
== null) // nothing is visible
1929
if ((Image != null) && (
Clip
!= null))
1933
if (Utility.Covers(
Clip
, dest)) // If dest is inside clipping region, ignore clipping
2177
if (primitive.
Clip
!= null)
2179
bounds = Rect.Intersect(bounds, primitive.
Clip
.Bounds);
2204
if (primitive.
Clip
!= null)
2206
if (!Utility.FullyCovers(primitive.
Clip
, pshape))
AlphaFlattener\PrimitiveList.cs (5)
141
Geometry clip = p.
Clip
;
253
bool skip = !Utility.IsRenderVisible(info.bounds) || Utility.Disjoint(p.
Clip
, info.bounds);
269
if ((p.
Clip
!= null) && Utility.IsRectangle(p.
Clip
))
271
Rect bounds = p.
Clip
.Bounds;