Home | History | Annotate | Download | only in gpu

Lines Matching full:matrix

338      * @param matrix      optional matrix applied to rect (before viewMatrix)
341 * @param localMatrix optional matrix applied to localRect. If
347 const SkMatrix* matrix,
351 this->onDrawRect(rect, matrix, localRect, localMatrix);
357 void drawSimpleRect(const SkRect& rect, const SkMatrix* matrix = NULL) {
358 this->drawRect(rect, matrix, NULL, NULL);
360 void drawSimpleRect(const SkIRect& irect, const SkMatrix* matrix = NULL) {
362 this->drawRect(rect, matrix, NULL, NULL);
491 * @param viewMatrix Optional view matrix. If init = kPreserve then the draw state's
492 * matrix will be preconcat'ed with the param. All stages will be
493 updated to compensate for the matrix change. If init == kReset
494 then the draw state's matrix will be this matrix.
508 * @param viewMatrix Optional view matrix. If init = kPreserve then the draw state's
509 * matrix will be preconcat'ed with the param. All stages will be
510 updated to compensate for the matrix change. If init == kReset
511 then the draw state's matrix will be this matrix.
516 * Like set() but makes the view matrix identity. When init is kReset it is as though
518 * the inverse view matrix was passed. If kPreserve is passed and the draw state's matrix
818 const SkMatrix* matrix,