Home | History | Annotate | Download | only in hwui

Lines Matching refs:DrawOp

111 class DrawOp : public DisplayListOp {
114 DrawOp(SkPaint* paint)
216 class DrawBoundedOp : public DrawOp {
219 : DrawOp(paint), mLocalBounds(left, top, right, bottom) {}
222 : DrawOp(paint), mLocalBounds(localBounds) {}
228 : DrawOp(paint), mLocalBounds(points[0], points[1], points[0], points[1]) {
238 DrawBoundedOp(SkPaint* paint): DrawOp(paint) { }
1097 class DrawColorOp : public DrawOp {
1100 : DrawOp(0), mColor(color), mMode(mode) {};
1359 class DrawSomeTextOp : public DrawOp {
1362 : DrawOp(paint), mText(text), mBytesCount(bytesCount), mCount(count) {};
1502 class DrawFunctorOp : public DrawOp {
1505 : DrawOp(0), mFunctor(functor) {}
1562 class DrawLayerOp : public DrawOp {
1565 : DrawOp(0), mLayer(layer), mX(x), mY(y) {}