HomeSort by relevance Sort by last modified time
    Searched full:clip (Results 301 - 325 of 1666) sorted by null

<<11121314151617181920>>

  /external/skia/src/gpu/
GrPipelineBuilder.h 35 * Initializes the GrPipelineBuilder based on a GrPaint, render target, and clip. Note
223 * Changing the clip has the side-effect of possibly zeroing
225 * using stencil should not change the clip between passes.
365 void setClip(const GrClip& clip) { fClip = clip; }
366 const GrClip& clip() const { return fClip; } function in class:GrPipelineBuilder
  /external/skia/src/pdf/
SkPDFDevice.cpp 195 // intersect. If the clip stack does anything other than intersect,
302 // Because of SkClipStack does internal intersection, the last clip
372 /* Uses Path Ops to calculate a vector SkPath clip from a clip stack.
374 * If successful, the resulting clip is stored in outClipPath.
454 // gsState->initialEntry()->fClipStack/Region specifies the clip that has
456 // a clip to the content area. If this is a layer, then it specifies
457 // the clip in effect when the layer was created.) There's no need to
458 // reapply that clip; SKCanvas's SkDrawIter will draw anything outside the
459 // initial clip on the parent layer. (This means there's a bug if the use
1710 SkRasterClip clip = *d.fRC; local
    [all...]
  /external/skia/src/utils/
SkTextureCompressor_Blitter.h 309 void blitMask(const SkMask& mask, const SkIRect& clip) override {
315 SkASSERT(mask.fBounds.contains(clip));
317 // Start from largest block boundary less than the clip boundaries.
318 const int startI = BlockDim * (clip.left() / BlockDim);
319 const int startJ = BlockDim * (clip.top() / BlockDim);
321 for (int j = startJ; j < clip.bottom(); j += BlockDim) {
325 for (int i = startI; i < clip.right(); i += BlockDim) {
327 // At this point, the block should intersect the clip.
329 SkIRect::MakeXYWH(i, j, BlockDim, BlockDim), clip));
332 if (i < clip.left() || j < clip.top() |
    [all...]
  /frameworks/base/libs/hwui/tests/unit/
RecordingCanvasTests.cpp 70 << "Clip should be serialized once";
454 << "Clip + unclipped saveLayer should result in a clipped layer";
462 // shouldn't matter, since saveLayer will clip to its bounds
474 EXPECT_CLIP_RECT(Rect(100, 100), op.localClip) // Recorded clip rect should be
534 // NOTE: this check relies on saveLayer altering the clip post-viewport init. This
535 // causes the clip to be recorded by contained draw commands, though it's not necessary
536 // since the same clip will be computed at draw time. If such a change is made, this
537 // check could be done at record time by querying the clip, or the clip could be altered
552 // empty clip rect should force layer + contents to be rejecte
    [all...]
  /external/skia/src/effects/
SkMorphologyImageFilter.cpp 452 const GrClip& clip,
467 drawContext->fillRectToRect(clip, paint, SkMatrix::I(), SkRect::Make(dstRect),
472 const GrClip& clip,
485 drawContext->fillRectToRect(clip, paint, SkMatrix::I(), SkRect::Make(dstRect),
490 const GrClip& clip,
522 apply_morphology_rect(drawContext, clip, texture, srcRect, dstRect, radius,
526 apply_morphology_rect(drawContext, clip, texture, lowerSrcRect, lowerDstRect, radius,
528 apply_morphology_rect(drawContext, clip, texture, upperSrcRect, upperDstRect, radius,
530 apply_morphology_rect_no_bounds(drawContext, clip, texture, middleSrcRect, middleDstRect,
544 // setup new clip
    [all...]
  /external/skia/src/gpu/text/
GrAtlasTextBlob.cpp 343 const GrClip& clip, const SkPaint& skPaint,
358 GrBlurUtils::drawPathWithMaskFilter(context, dc, clip, bigGlyph.fPath,
366 const GrClip& clip, const SkPaint& skPaint,
384 GrTextUtils::DrawTextAsPath(context, dc, clip, runPaint, viewMatrix,
389 GrTextUtils::DrawPosTextAsPath(context, dc, props, clip, runPaint, viewMatrix,
395 GrTextUtils::DrawPosTextAsPath(context, dc, props, clip, runPaint, viewMatrix,
410 const GrClip& clip,
416 GrPipelineBuilder pipelineBuilder(grPaint, dc->accessRenderTarget(), clip);
423 this->flushRunAsPaths(context, dc, props, it, clip, skPaint,
432 this->flushBigGlyphs(context, dc, clip, skPaint, viewMatrix, x, y, clipBounds)
    [all...]
GrAtlasTextContext.cpp 70 const GrClip& clip, const SkPaint& skPaint,
159 grPaint, drawFilter, clip, viewMatrix, clipBounds, x, y);
304 const GrClip& clip,
320 clip, viewMatrix, regionClipBounds, x, y);
325 GrTextUtils::DrawTextAsPath(context, dc, clip, skPaint, viewMatrix, text, byteLength, x, y,
331 const GrClip& clip,
350 clip, viewMatrix, regionClipBounds, offset.fX, offset.fY);
355 GrTextUtils::DrawPosTextAsPath(context, dc, props, clip, skPaint, viewMatrix, text,
  /frameworks/base/libs/hwui/
OpenGLRenderer.h 130 * frame is assumed to be dirty. A clip will automatically be set to
161 // created, which will in turn clip to that mask when drawn back/restored.
208 * Store the current display state (most importantly, the current clip and transform), and
327 * The clipping outline is independent from the regular clip.
477 * Sets the clipping rectangle using glScissor. The clip is defined by
483 * Sets the clipping region using the stencil buffer. The clip region
491 void calculateLayerBoundsAndClip(Rect& bounds, Rect& clip, bool fboLayer);
494 * Given the local bounds + clip of the layer, updates current snapshot's empty/invisible
496 void updateSnapshotIgnoreForLayer(const Rect& bounds, const Rect& clip,
524 bool createFboLayer(Layer* layer, Rect& bounds, Rect& clip);
    [all...]
  /frameworks/base/docs/html/guide/topics/media/jet/
jetcreator_manual.jd 208 a track at the moment the game event occurs might result in a music clip
209 starting in the middle. Alternatively, a clip could be started from the
213 <p>However, with the JET sync engine, a clip
217 the start of a clip and a second event signifies the end of a clip. When the
218 application calls the JET clip function, the next clip in the track is allowed
1016 103 JET clip marker</p>
1023 <h2>6.1 JET Clip Marker (CC103)</h2>
1027 the JET_TriggerClip API call. The clip ID is encoded in the low 6 bits of th
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/collision/
ManifoldPoint.java 58 * <li>e_faceA: the local center of cirlceB or the clip point of polygonB</li>
59 * <li>e_faceB: the clip point of polygonA</li></ul>
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/Gimpact/
btClipPolygon.h 81 //clip first point
132 //clip first point0
  /external/mesa3d/docs/
MESA_window_pos.spec 41 clip testing is not performed.
95 clip test operation always passes. The current raster position values
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_clip.h 127 /* Points are only culled, so no need for a clip routine, however it
135 /* brw_clip_tri.c, for use by the unfilled clip routine:
gen7_viewport_state.c 43 /* Also assign to clip.vp_offset in case something uses it. */
44 brw->clip.vp_offset = brw->sf.vp_offset;
  /external/mesa3d/src/mesa/libdricore/
Makefile.am 52 # outputs between main/clip.c and sparc/clip.c. The documented way to
  /external/skia/bench/
RectoriBench.cpp 51 // clip rect and translate the blurred version back inside
60 // clip always equals inner rect so we get the inside blur
  /external/skia/gm/
skbug1719.cpp 14 * This test exercises bug 1719. An anti-aliased blurred path is rendered through a soft clip. On
16 * result. The same texture is then incorrectly used to generate the soft clip mask for the draw.
  /external/skia/samplecode/
SampleDitherBitmap.cpp 52 SkRegion clip(bounds);
53 return region.setPath(path, clip); // <-- !! DOWN !!
  /external/skia/src/core/
SkQuadClipper.cpp 15 void SkQuadClipper::setClip(const SkIRect& clip) {
17 fClip.set(clip);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
omxVCM4P2_QuantInter_I.c 90 /* Set the Clip Range based on SVH on/off */
114 /* Clip */
  /frameworks/base/core/java/android/view/
ViewAnimationUtils.java 32 * Any shadow cast by the View will respect the circular clip from this animator.
34 * Only a single non-rectangular clip can be applied on a View at any time.
  /frameworks/base/docs/html-intl/intl/ja/training/material/
shadows-clipping.jd 11 <li><a href="#Clip">??????????</a></li>
119 <h2 id="Clip">??????????</h2>
  /frameworks/base/docs/html-intl/intl/ko/training/material/
shadows-clipping.jd 11 <li><a href="#Clip">? ???</a></li>
119 <h2 id="Clip">? ???</h2>
  /frameworks/base/docs/html-intl/intl/ru/training/material/
shadows-clipping.jd 11 <li><a href="#Clip">??????? ?????????????</a></li>
119 <h2 id="Clip">??????? ?????????????</h2>
  /frameworks/base/docs/html-intl/intl/zh-cn/training/material/
shadows-clipping.jd 11 <li><a href="#Clip">????</a></li>
119 <h2 id="Clip">????</h2>

Completed in 403 milliseconds

<<11121314151617181920>>