Home
last modified time | relevance | path

Searched refs:mappedRect (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/third_party/skia/src/utils/
DSkGatherPixelRefsAndRects.h82 SkRect mappedRect; in drawRect() local
83 draw.fMatrix->mapRect(&mappedRect, rect); in drawRect()
85 mappedRect.intersect(clipRect); in drawRect()
86 fPRCont->add(bm.pixelRef(), mappedRect); in drawRect()
119 SkRect mappedRect; in drawBitmap() local
120 totMatrix.mapRect(&mappedRect, bitmapRect); in drawBitmap()
121 fPRCont->add(bitmap.pixelRef(), mappedRect); in drawBitmap()
125 fPRCont->add(paintBitmap.pixelRef(), mappedRect); in drawBitmap()
136 SkRect mappedRect; in drawSprite() local
137 matrix.mapRect(&mappedRect, bitmapRect); in drawSprite()
[all …]
/external/skia/src/utils/
DSkGatherPixelRefsAndRects.h87 SkRect mappedRect; in drawRect() local
88 draw.fMatrix->mapRect(&mappedRect, rect); in drawRect()
90 mappedRect.intersect(clipRect); in drawRect()
91 fPRCont->add(bm.pixelRef(), mappedRect); in drawRect()
124 SkRect mappedRect; in drawBitmap() local
125 totMatrix.mapRect(&mappedRect, bitmapRect); in drawBitmap()
126 fPRCont->add(bitmap.pixelRef(), mappedRect); in drawBitmap()
130 fPRCont->add(paintBitmap.pixelRef(), mappedRect); in drawBitmap()
141 SkRect mappedRect; in drawSprite() local
142 matrix.mapRect(&mappedRect, bitmapRect); in drawSprite()
[all …]
/external/chromium_org/third_party/WebKit/Source/platform/transforms/
DAffineTransform.cpp276 FloatRect mappedRect(rect); in mapRect() local
277mappedRect.move(narrowPrecisionToFloat(m_transform[4]), narrowPrecisionToFloat(m_transform[5])); in mapRect()
278 return mappedRect; in mapRect()
DTransformationMatrix.cpp701 FloatRect mappedRect(r); in mapRect() local
702 mappedRect.move(static_cast<float>(m_matrix[3][0]), static_cast<float>(m_matrix[3][1])); in mapRect()
703 return mappedRect; in mapRect()