Home | History | Annotate | Download | only in hwui

Lines Matching defs:Matrix4

39 class ANDROID_API Matrix4 {
72 Matrix4() {
76 Matrix4(const float* v) {
80 Matrix4(const Matrix4& v) {
84 Matrix4(const SkMatrix& v) {
97 Matrix4& operator=(const SkMatrix& v) {
102 friend bool operator==(const Matrix4& a, const Matrix4& b) {
106 friend bool operator!=(const Matrix4& a, const Matrix4& b) {
113 void load(const Matrix4& v);
116 void loadInverse(const Matrix4& v);
123 void loadMultiply(const Matrix4& u, const Matrix4& v);
129 void multiply(const Matrix4& v) {
130 Matrix4 u;
146 Matrix4 u;
161 Matrix4 u;
167 Matrix4 u;
173 Matrix4 u;
203 static const Matrix4& identity();
218 }; // class Matrix4
224 typedef Matrix4 mat4;