HomeSort by relevance Sort by last modified time
    Searched full:clip (Results 1 - 25 of 1782) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/skia/src/core/
SkScan.cpp 18 void SkScan::FillIRect(const SkIRect& r, const SkRegion* clip,
21 if (clip) {
22 if (clip->isRect()) {
23 const SkIRect& clipBounds = clip->getBounds();
34 SkRegion::Cliperator cliper(*clip, r);
48 void SkScan::FillXRect(const SkXRect& xr, const SkRegion* clip,
53 SkScan::FillIRect(r, clip, blitter);
58 void SkScan::FillRect(const SkRect& r, const SkRegion* clip,
63 SkScan::FillIRect(ir, clip, blitter);
70 void SkScan::FillIRect(const SkIRect& r, const SkRasterClip& clip,
    [all...]
SkEdgeClipper.cpp 13 static bool quick_reject(const SkRect& bounds, const SkRect& clip) {
14 return bounds.fTop >= clip.fBottom || bounds.fBottom <= clip.fTop;
75 // Modify pts[] in place so that it is clipped in Y to the clip rect
76 static void chop_quad_in_Y(SkPoint pts[3], const SkRect& clip) {
81 if (pts[0].fY < clip.fTop) {
82 if (chopMonoQuadAtY(pts, clip.fTop, &t)) {
86 tmp[2].fY = clip.fTop;
87 clamp_ge(tmp[3].fY, clip.fTop);
95 if (pts[i].fY < clip.fTop)
    [all...]
SkScanPriv.h 18 SkScanClipper(SkBlitter* blitter, const SkRegion* clip, const SkIRect& bounds,
31 // clipRect == null means path is entirely inside the clip
36 // blit the rects above and below avoid, clipped to clip
37 void sk_blit_above(SkBlitter*, const SkIRect& avoid, const SkRegion& clip);
38 void sk_blit_below(SkBlitter*, const SkIRect& avoid, const SkRegion& clip);
SkLineClipper.cpp 87 bool SkLineClipper::IntersectLine(const SkPoint src[2], const SkRect& clip,
92 if (containsNoEmptyCheck(clip, bounds)) {
100 if (nestedLT(bounds.fRight, clip.fLeft, bounds.width()) ||
101 nestedLT(clip.fRight, bounds.fLeft, bounds.width()) ||
102 nestedLT(bounds.fBottom, clip.fTop, bounds.height()) ||
103 nestedLT(clip.fBottom, bounds.fTop, bounds.height())) {
121 if (tmp[index0].fY < clip.fTop) {
122 tmp[index0].set(sect_with_horizontal(src, clip.fTop), clip.fTop);
124 if (tmp[index1].fY > clip.fBottom)
    [all...]
SkQuadClipper.h 15 /** This class is initialized with a clip rectangle, and then can be fed quads,
18 In the future, it might return a series of segments, allowing it to clip
25 void setClip(const SkIRect& clip);
39 bool clipQuad(const SkPoint pts[3], const SkRect& clip);
40 bool clipCubic(const SkPoint pts[4], const SkRect& clip);
55 void clipMonoQuad(const SkPoint srcPts[3], const SkRect& clip);
56 void clipMonoCubic(const SkPoint srcPts[4], const SkRect& clip);
  /external/icu4c/samples/layout/
Surface.cpp 18 RECT clip; local
20 clip.top = 0;
21 clip.left = 0;
22 clip.bottom = height;
23 clip.right = width;
27 ExtTextOut(fHdc, x, y - fAscent, ETO_CLIPPED | ETO_GLYPH_INDEX, &clip,
  /external/skia/src/core/
SkScan.cpp 18 void SkScan::FillIRect(const SkIRect& r, const SkRegion* clip,
21 if (clip) {
22 if (clip->isRect()) {
23 const SkIRect& clipBounds = clip->getBounds();
34 SkRegion::Cliperator cliper(*clip, r);
48 void SkScan::FillXRect(const SkXRect& xr, const SkRegion* clip,
53 SkScan::FillIRect(r, clip, blitter);
58 void SkScan::FillRect(const SkRect& r, const SkRegion* clip,
63 SkScan::FillIRect(ir, clip, blitter);
70 void SkScan::FillIRect(const SkIRect& r, const SkRasterClip& clip,
    [all...]
SkEdgeClipper.cpp 13 static bool quick_reject(const SkRect& bounds, const SkRect& clip) {
14 return bounds.fTop >= clip.fBottom || bounds.fBottom <= clip.fTop;
75 // Modify pts[] in place so that it is clipped in Y to the clip rect
76 static void chop_quad_in_Y(SkPoint pts[3], const SkRect& clip) {
81 if (pts[0].fY < clip.fTop) {
82 if (chopMonoQuadAtY(pts, clip.fTop, &t)) {
86 tmp[2].fY = clip.fTop;
87 clamp_ge(tmp[3].fY, clip.fTop);
95 if (pts[i].fY < clip.fTop)
    [all...]
SkScanPriv.h 18 SkScanClipper(SkBlitter* blitter, const SkRegion* clip, const SkIRect& bounds,
31 // clipRect == null means path is entirely inside the clip
36 // blit the rects above and below avoid, clipped to clip
37 void sk_blit_above(SkBlitter*, const SkIRect& avoid, const SkRegion& clip);
38 void sk_blit_below(SkBlitter*, const SkIRect& avoid, const SkRegion& clip);
SkLineClipper.cpp 87 bool SkLineClipper::IntersectLine(const SkPoint src[2], const SkRect& clip,
92 if (containsNoEmptyCheck(clip, bounds)) {
100 if (nestedLT(bounds.fRight, clip.fLeft, bounds.width()) ||
101 nestedLT(clip.fRight, bounds.fLeft, bounds.width()) ||
102 nestedLT(bounds.fBottom, clip.fTop, bounds.height()) ||
103 nestedLT(clip.fBottom, bounds.fTop, bounds.height())) {
121 if (tmp[index0].fY < clip.fTop) {
122 tmp[index0].set(sect_with_horizontal(src, clip.fTop), clip.fTop);
124 if (tmp[index1].fY > clip.fBottom)
    [all...]
SkQuadClipper.h 15 /** This class is initialized with a clip rectangle, and then can be fed quads,
18 In the future, it might return a series of segments, allowing it to clip
25 void setClip(const SkIRect& clip);
39 bool clipQuad(const SkPoint pts[3], const SkRect& clip);
40 bool clipCubic(const SkPoint pts[4], const SkRect& clip);
55 void clipMonoQuad(const SkPoint srcPts[3], const SkRect& clip);
56 void clipMonoCubic(const SkPoint srcPts[4], const SkRect& clip);
  /external/llvm/test/YAMLParser/
spec-09-23.data 6 # text? ? # Clip
10clip: |
spec-09-22.data 4 text?clip: |
spec-09-24.data 5 clip: >
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_clip_state.c 41 struct brw_clip_unit_state *clip; local
43 clip = brw_state_batch(brw, AUB_TRACE_CLIP_STATE,
44 sizeof(*clip), 32, &brw->clip.state_offset);
45 memset(clip, 0, sizeof(*clip));
48 clip->thread0.grf_reg_count = (ALIGN(brw->clip.prog_data->total_grf, 16) /
50 clip->thread0.kernel_start_pointer =
52 brw->clip.state_offset
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_clip_state.c 41 struct brw_clip_unit_state *clip; local
43 clip = brw_state_batch(brw, AUB_TRACE_CLIP_STATE,
44 sizeof(*clip), 32, &brw->clip.state_offset);
45 memset(clip, 0, sizeof(*clip));
48 clip->thread0.grf_reg_count = (ALIGN(brw->clip.prog_data->total_grf, 16) /
50 clip->thread0.kernel_start_pointer =
52 brw->clip.state_offset
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/
GrStencil.cpp 13 // Stencil Rules for Merging user stencil space into clip
15 // We can't include the clip bit in the ref or mask values because the division
16 // between user and clip bits in the stencil depends on the number of stencil
18 // incorporate the clip bit into these settings.
23 // set the ref to be the clip bit, but mask it out for the test
28 0xffff, // unset clip bit
29 0x0000, // set clip bit
36 0xffff, // unset clip bit
37 0x0000, // set clip bit
47 0x0000, // set clip bi
    [all...]
  /external/skia/src/gpu/
GrStencil.cpp 13 // Stencil Rules for Merging user stencil space into clip
15 // We can't include the clip bit in the ref or mask values because the division
16 // between user and clip bits in the stencil depends on the number of stencil
18 // incorporate the clip bit into these settings.
23 // set the ref to be the clip bit, but mask it out for the test
28 0xffff, // unset clip bit
29 0x0000, // set clip bit
36 0xffff, // unset clip bit
37 0x0000, // set clip bit
47 0x0000, // set clip bi
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SVG/resources/
MtSaintHelens.svg 242 <defs><clipPath id ="masterclip" ><path d="M0,0L576,0L576,504L0,504" /></clipPath></defs><g style="clip-path:url(#masterclip)" ><g id="screen">
267 <path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M0,426l2,-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M0,311l1,2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M2,242h-2" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M0,439l2,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M11,15h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M3,6l1,-1" />
268 <path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M0,20l4,-1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M0,411h1" /><path style="clip-path:url(#cp1);stroke-width:0.250000;stroke-linecap:round;stroke:rgb(51,51,51);" fill="none" d="M0 (…)
    [all...]
  /external/chromium_org/chrome/android/testshell/res/drawable/
progress.xml 9 <clip xmlns:android="http://schemas.android.com/apk/res/android">
13 </clip>
  /external/chromium_org/content/shell/android/java/res/drawable/
progress.xml 9 <clip xmlns:android="http://schemas.android.com/apk/res/android">
13 </clip>
  /external/chromium_org/third_party/skia/include/core/
SkLineClipper.h 21 /* Clip the line pts[0]...pts[1] against clip, ignoring segments that
22 lie completely above or below the clip. For portions to the left or
24 edge of the clip.
32 static int ClipLine(const SkPoint pts[2], const SkRect& clip,
43 static bool IntersectLine(const SkPoint src[2], const SkRect& clip,
  /external/chromium_org/tools/perf/metrics/unittest_data/
sample_timeline.json 8 "clip": [ 0, 0, 1000, 0, 1000, 800, 0, 800 ]
31 "clip": [ 0, 0, 1000, 0, 1000, 1000, 0, 1000 ]
42 "clip": [ 0, 0, 1000, 0, 1000, 300, 0, 300 ]
52 "clip": [ 0, 0, 1000, 0, 1000, 300, 0, 300 ]
63 "clip": [ 0, 0, 1000, 0, 1000, 300, 0, 300 ]
76 "clip": [ 0, 0, 1000, 0, 1000, 200, 0, 200 ]
  /external/skia/include/core/
SkLineClipper.h 21 /* Clip the line pts[0]...pts[1] against clip, ignoring segments that
22 lie completely above or below the clip. For portions to the left or
24 edge of the clip.
32 static int ClipLine(const SkPoint pts[2], const SkRect& clip,
43 static bool IntersectLine(const SkPoint src[2], const SkRect& clip,
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_atom_clip.c 42 /* Second state atom for user clip planes:
46 struct pipe_clip_state clip; local
50 STATIC_ASSERT(sizeof(clip.ucp) <= sizeof(ctx->Transform._ClipUserPlane));
52 /* if we have a vertex shader that writes clip vertex we need to pass
59 memcpy(clip.ucp,
61 : ctx->Transform._ClipUserPlane, sizeof(clip.ucp));
62 st->state.clip = clip;
63 cso_set_clip(st->cso_context, &clip);

Completed in 3620 milliseconds

1 2 3 4 5 6 7 8 91011>>