• Home
  • Raw
  • Download

Lines Matching refs:clip

226     Rect clip(*mSnapshot->clipRect);  in callDrawGLFunction()  local
227 clip.snapToPixelBoundaries(); in callDrawGLFunction()
233 dirtyLayerUnchecked(clip, getRegion()); in callDrawGLFunction()
238 info.clipLeft = clip.left; in callDrawGLFunction()
239 info.clipTop = clip.top; in callDrawGLFunction()
240 info.clipRight = clip.right; in callDrawGLFunction()
241 info.clipBottom = clip.bottom; in callDrawGLFunction()
501 Rect clip(bounds); in createFboLayer() local
502 snapshot->transform->mapRect(clip); in createFboLayer()
503 clip.intersect(*snapshot->clipRect); in createFboLayer()
504 clip.snapToPixelBoundaries(); in createFboLayer()
505 clip.intersect(snapshot->previous->viewport); in createFboLayer()
510 inverse.mapRect(clip); in createFboLayer()
511 clip.snapToPixelBoundaries(); in createFboLayer()
512 clip.intersect(bounds); in createFboLayer()
513 clip.translate(-bounds.left, -bounds.top); in createFboLayer()
518 snapshot->resetClip(clip.left, clip.top, clip.right, clip.bottom); in createFboLayer()
553 glScissor(clip.left - 1.0f, bounds.getHeight() - clip.bottom - 1.0f, in createFboLayer()
554 clip.getWidth() + 2.0f, clip.getHeight() + 2.0f); in createFboLayer()
961 Rect clip(*mSnapshot->clipRect); in setScissorFromClip() local
962 clip.snapToPixelBoundaries(); in setScissorFromClip()
963 glScissor(clip.left, mSnapshot->height - clip.bottom, clip.getWidth(), clip.getHeight()); in setScissorFromClip()
987 bool clipped = mSnapshot->clip(left, top, right, bottom, op); in clipRect()
1960 Rect& clip(*mSnapshot->clipRect); in drawColor() local
1961 clip.snapToPixelBoundaries(); in drawColor()
1963 drawColorRect(clip.left, clip.top, clip.right, clip.bottom, color, mode, true); in drawColor()
2163 const Rect* clip = pureTranslate ? mSnapshot->clipRect : &mSnapshot->getLocalClip(); in drawText() local
2177 if (fontRenderer.renderText(paint, clip, text, 0, bytesCount, count, x, y, in drawText()