Home | History | Annotate | Download | only in hwui

Lines Matching full:matrix

212 void DisplayListRenderer::setMatrix(SkMatrix* matrix) {
213 matrix = refMatrix(matrix);
214 addStateOp(new (alloc()) SetMatrixOp(matrix));
215 OpenGLRenderer::setMatrix(matrix);
218 void DisplayListRenderer::concatMatrix(SkMatrix* matrix) {
219 matrix = refMatrix(matrix);
220 addStateOp(new (alloc()) ConcatMatrixOp(matrix));
221 OpenGLRenderer::concatMatrix(matrix);
269 status_t DisplayListRenderer::drawBitmap(SkBitmap* bitmap, SkMatrix* matrix, SkPaint* paint) {
271 matrix = refMatrix(matrix);
274 addDrawOp(new (alloc()) DrawBitmapMatrixOp(bitmap, matrix, paint));