Home | History | Annotate | Download | only in hwui

Lines Matching refs:matrix

195      * If the matrix is identity or translate and/or scale.
221 friend std::ostream& operator<<(std::ostream& os, const Matrix4& matrix) {
222 if (matrix.isSimple()) {
223 os << "offset " << matrix.getTranslateX() << "x" << matrix.getTranslateY();
224 if (!matrix.isPureTranslate()) {
225 os << ", scale " << matrix[kScaleX] << "x" << matrix[kScaleY];
228 os << "[" << matrix[0];
230 os << ", " << matrix[i];