Home | History | Annotate | Download | only in hwui

Lines Matching full:matrix4

47 class ANDROID_API Matrix4 {
80 Matrix4() {
84 Matrix4(const float* v) {
88 Matrix4(const Matrix4& v) {
92 Matrix4(const SkMatrix& v) {
105 Matrix4& operator=(const SkMatrix& v) {
110 friend bool operator==(const Matrix4& a, const Matrix4& b) {
114 friend bool operator!=(const Matrix4& a, const Matrix4& b) {
121 void load(const Matrix4& v);
124 void loadInverse(const Matrix4& v);
131 void loadMultiply(const Matrix4& u, const Matrix4& v);
137 void multiply(const Matrix4& v) {
138 Matrix4 u;
156 Matrix4 u;
171 Matrix4 u;
177 Matrix4 u;
183 Matrix4 u;
215 static const Matrix4& identity();
230 }; // class Matrix4
236 typedef Matrix4 mat4;