Home
last modified time | relevance | path

Searched refs:rectIndex (Results 1 – 7 of 7) sorted by relevance

/external/skia/src/gpu/ops/
DGrDashOp.cpp580 int rectIndex = 0; in onPrepareDraws() local
587 rects[rectIndex], vertices, geom.fSrcRotInv, in onPrepareDraws()
592 vertices.writeQuad(GrQuad::MakeFromRect(rects[rectIndex], geom.fSrcRotInv)); in onPrepareDraws()
595 rectIndex++; in onPrepareDraws()
600 rects[rectIndex], vertices, geom.fSrcRotInv, in onPrepareDraws()
605 vertices.writeQuad(GrQuad::MakeFromRect(rects[rectIndex], geom.fSrcRotInv)); in onPrepareDraws()
608 rectIndex++; in onPrepareDraws()
613 rects[rectIndex], vertices, geom.fSrcRotInv, in onPrepareDraws()
618 vertices.writeQuad(GrQuad::MakeFromRect(rects[rectIndex], geom.fSrcRotInv)); in onPrepareDraws()
621 rectIndex++; in onPrepareDraws()
/external/skqp/src/gpu/ops/
DGrDashOp.cpp577 int rectIndex = 0; in onPrepareDraws() local
584 rects[rectIndex], vertices, geom.fSrcRotInv, in onPrepareDraws()
589 vertices.writeQuad(GrQuad(rects[rectIndex], geom.fSrcRotInv)); in onPrepareDraws()
592 rectIndex++; in onPrepareDraws()
597 rects[rectIndex], vertices, geom.fSrcRotInv, in onPrepareDraws()
602 vertices.writeQuad(GrQuad(rects[rectIndex], geom.fSrcRotInv)); in onPrepareDraws()
605 rectIndex++; in onPrepareDraws()
610 rects[rectIndex], vertices, geom.fSrcRotInv, in onPrepareDraws()
615 vertices.writeQuad(GrQuad(rects[rectIndex], geom.fSrcRotInv)); in onPrepareDraws()
618 rectIndex++; in onPrepareDraws()
/external/skqp/tools/viewer/
DImGuiLayer.cpp152 ImDrawIdx rectIndex = drawList->IdxBuffer[indexOffset]; in onPaint() local
153 SkPoint tl = pos[rectIndex], br = pos[rectIndex + 2]; in onPaint()
/external/skia/tools/viewer/
DImGuiLayer.cpp161 ImDrawIdx rectIndex = drawList->IdxBuffer[indexOffset]; in onPaint() local
162 SkPoint tl = pos[rectIndex], br = pos[rectIndex + 2]; in onPaint()
/external/dng_sdk/source/
Ddng_bad_pixels.cpp1801 for (uint32 rectIndex = 0; rectIndex < rectCount; rectIndex++) in ProcessArea() local
1804 dng_rect badRect = fList->Rect (rectIndex); in ProcessArea()
1811 bool isIsolated = fList->IsRectIsolated (rectIndex, in ProcessArea()
/external/pdfium/core/fpdftext/
Dcpdf_textpage.h114 bool GetRect(int rectIndex, CFX_FloatRect* pRect) const;
Dcpdf_textpage.cpp474 bool CPDF_TextPage::GetRect(int rectIndex, CFX_FloatRect* pRect) const { in GetRect() argument
475 if (!m_bIsParsed || !pdfium::IndexInBounds(m_SelRects, rectIndex)) in GetRect()
478 *pRect = m_SelRects[rectIndex]; in GetRect()