HomeSort by relevance Sort by last modified time
    Searched refs:fLeft (Results 151 - 175 of 311) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/skia/src/gpu/vk/
GrVkGpuCommandBuffer.cpp 258 vkRect.setLTRB(scissor.fLeft, fRenderTarget->height() - scissor.fBottom,
262 clearRect.rect.offset = { vkRect.fLeft, vkRect.fTop };
344 vkRect.setLTRB(scissor.fLeft, fRenderTarget->height() - scissor.fBottom,
347 clearRect.rect.offset = { vkRect.fLeft, vkRect.fTop };
GrVkGpu.cpp 509 resolveInfo.srcOffset = { srcVkRect.fLeft, srcVkRect.fTop, 0 };
546 this->resolveImage(target, rt, srcRect, SkIPoint::Make(srcRect.fLeft, srcRect.fTop));
    [all...]
  /frameworks/base/core/jni/android/graphics/
HarfBuzzNGFaceSkia.cpp 76 extents->x_bearing = SkScalarToHBFixed(skBounds.fLeft);
  /external/skia/bench/
GameBench.cpp 199 { SkIntToScalar(src.fLeft), SkIntToScalar(src.fBottom) },
200 { SkIntToScalar(src.fLeft), SkIntToScalar(src.fTop) },
  /external/skia/src/codec/
SkSampledCodec.cpp 226 incrementalSubset.fLeft = sampledOptions.fSubset->fLeft;
  /external/skia/src/effects/
SkAlphaThresholdFilter.cpp 223 SkIPoint srcOffset = { bounds.fLeft - inputOffset.fX, bounds.fTop - inputOffset.fY };
231 localInverse.mapXY((SkScalar)x + bounds.fLeft, (SkScalar)y + bounds.fTop, &position);
  /external/skia/src/gpu/
GrBlurUtils.cpp 42 SkMatrix matrix = SkMatrix::MakeTrans(-SkIntToScalar(maskRect.fLeft),
135 translate.setTranslate(-SkIntToScalar(maskRect.fLeft), -SkIntToScalar(maskRect.fTop));
GrDrawOpAtlas.cpp 137 dataPtr += fBytesPerPixel * fDirtyRect.fLeft;
138 writePixels(texture, fOffset.fX + fDirtyRect.fLeft, fOffset.fY + fDirtyRect.fTop,
GrRenderTargetOpList.cpp 56 SkDebugf("ClippedBounds: [L: %.2f, T: %.2f, R: %.2f, B: %.2f]\n", bounds.fLeft,
274 op->bounds().fLeft, op->bounds().fTop,
GrTessellator.cpp 334 , fLeft(nullptr)
354 Edge* fLeft; // The linked list of edges in the active edge list.
427 list_insert<Edge, &Edge::fLeft, &Edge::fRight>(edge, prev, next, &fHead, &fTail);
433 list_remove<Edge, &Edge::fLeft, &Edge::fRight>(edge, &fHead, &fTail);
443 fHead->fLeft = fTail;
447 return edge->fLeft || edge->fRight || fHead == edge;
797 *left = v->fFirstEdgeAbove->fLeft;
803 for (prev = edges->fTail; prev != nullptr; prev = prev->fLeft) {
    [all...]
  /external/skia/src/gpu/effects/
GrConvexPolyEffect.cpp 80 fPrevRect.fLeft = SK_ScalarNaN;
143 pdman.set4f(fRectUniform, rect.fLeft + 0.5f, rect.fTop + 0.5f,
  /external/skia/src/gpu/ops/
GrDrawAtlasOp.cpp 84 SkPoint::Make(currRect.fLeft, currRect.fTop);
102 SkPoint::Make(currRect.fLeft, currRect.fBottom);
GrSmallPathRenderer.cpp 393 scaledBounds.fLeft *= scale;
399 SkScalar dx = SkScalarFloorToScalar(scaledBounds.fLeft);
417 SkASSERT(devPathBounds.fLeft == 0);
514 SkScalar dx = SkScalarFloorToScalar(shapeDevBounds.fLeft);
529 SkASSERT(devPathBounds.fLeft == 0);
626 SkScalar texLeft = bounds.fLeft;
    [all...]
  /external/skia/src/pathops/
SkOpContour.h 26 ? fBounds.fLeft < rh.fBounds.fLeft
  /external/skia/src/views/
SkTouchGesture.cpp 352 fGlobalM.postTranslate(std::min(ZERO, fWindowRect.fRight - scaledContent.fLeft), ZERO);
353 fGlobalM.postTranslate(std::max(ZERO, fWindowRect.fLeft - scaledContent.fRight), ZERO);
  /external/skia/tests/
ClearTest.cpp 23 if (!rtc->readPixels(dstInfo, pixels.get(), 0, rect.fLeft, rect.fTop)) {
32 *failX = x + rect.fLeft;
PictureTest.cpp 642 REPORTER_ASSERT(reporter, 0 == clipBounds.fLeft);
652 REPORTER_ASSERT(reporter, 7 == clipBounds.fLeft);
662 REPORTER_ASSERT(reporter, 0 == clipBounds.fLeft);
671 REPORTER_ASSERT(reporter, 0 == clipBounds.fLeft);
683 REPORTER_ASSERT(reporter, 7 == clipBounds.fLeft);
693 REPORTER_ASSERT(reporter, 6 == clipBounds.fLeft);
714 REPORTER_ASSERT(reporter, 0 == finalCullRect.fLeft);
721 REPORTER_ASSERT(reporter, 0 == bbhCullRect.fLeft);
    [all...]
PathTest.cpp 835 arcRect.offset(rect.fLeft - arcRect.fLeft, rect.fBottom - arcRect.fBottom);
838 arcRect.offset(rect.fLeft - arcRect.fLeft, rect.fTop - arcRect.fTop);
    [all...]
BlurTest.cpp 76 const int xOff = itest.fLeft - iref.fLeft;
127 refCanvas.translate(SkIntToScalar(-iref.fLeft),
138 testCanvas.translate(SkIntToScalar(-itest.fLeft),
175 for (i = 0; i < dst.fBounds.width()-(midX-dst.fBounds.fLeft); ++i) {
  /frameworks/base/libs/hwui/
Rect.h 77 left(rect.fLeft),
84 left(rect.fLeft),
RecordingCanvas.cpp 235 return mState.quickRejectConservative(bounds.fLeft, bounds.fTop, bounds.fRight, bounds.fBottom);
257 drawRect(bounds.fLeft, bounds.fTop, bounds.fRight, bounds.fBottom, paint);
345 rects.push(r.fLeft);
357 drawRect(r.fLeft, r.fTop, r.fRight, r.fBottom, paint);
487 drawBitmap(bitmap, src.fLeft, src.fTop, src.fRight, src.fBottom,
488 dst.fLeft, dst.fTop, dst.fRight, dst.fBottom, paint);
  /external/skia/src/sksl/
SkSLCFGGenerator.cpp 151 if (!this->tryRemoveLValueBefore(iter, b->fLeft.get())) {
154 } else if (!this->tryRemoveExpressionBefore(iter, b->fLeft.get())) {
252 if (!this->tryInsertExpression(iter, &b->fLeft)) {
296 this->addExpression(cfg, &b->fLeft, constantPropagate);
312 this->addLValue(cfg, &b->fLeft);
322 this->addExpression(cfg, &b->fLeft, !Token::IsAssignment(b->fOperator));
  /external/skia/src/core/
SkDraw.cpp 180 pixels += rect.fTop * rowBytes + (rect.fLeft << shiftPerPixel);
350 r.fLeft = x - radius;
367 r.fLeft = x - radius;
548 r.fLeft = pts[i].fX - radius;
550 r.fRight = r.fLeft + width;
    [all...]
  /external/skia/src/ports/
SkScalerContext_win_dw.cpp 510 glyph->fLeft = SkToS16(bbox.left);
552 glyph->fLeft = 0;
818 bbox.left = glyph.fLeft;
820 bbox.right = glyph.fLeft + glyph.fWidth;
845 matrix.postTranslate(-SkIntToScalar(glyph.fLeft), -SkIntToScalar(glyph.fTop));
    [all...]
  /external/skia/gm/
beziereffects.cpp 90 pts[0].setRectFan(rect.fLeft, rect.fTop, rect.fRight, rect.fBottom, vertexStride);
265 verts[0].fPosition.setRectFan(rect.fLeft, rect.fTop, rect.fRight, rect.fBottom,
479 verts[0].fPosition.setRectFan(rect.fLeft, rect.fTop, rect.fRight, rect.fBottom,

Completed in 1340 milliseconds

1 2 3 4 5 67 8 91011>>