Home | History | Annotate | Download | only in hwui

Lines Matching refs:left

81         clipRegion->setRect(clipRect->left, clipRect->top, clipRect->right, clipRect->bottom);
98 bool Snapshot::clipRegionOp(float left, float top, float right, float bottom, SkRegion::Op op) {
100 tmp.set(left, top, right, bottom);
114 bool Snapshot::clip(float left, float top, float right, float bottom, SkRegion::Op op) {
115 Rect r(left, top, right, bottom);
127 clipped = clipRegionOp(r.left, r.top, r.right, r.bottom, SkRegion::kIntersect_Op);
138 setClip(r.left, r.top, r.right, r.bottom);
144 clipped = clipRegionOp(r.left, r.top, r.right, r.bottom, op);
156 void Snapshot::setClip(float left, float top, float right, float bottom) {
157 clipRect->set(left, top, right, bottom);
178 void Snapshot::resetClip(float left, float top, float right, float bottom) {
184 setClip(left, top, right, bottom);
208 clipRect, clipRect->left, clipRect->top, clipRect->right, clipRect->bottom);