HomeSort by relevance Sort by last modified time
    Searched defs:m_matrix (Results 1 - 6 of 6) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/transforms/
Matrix3DTransformOperation.h 40 TransformationMatrix matrix() const {return m_matrix; }
43 virtual bool isIdentity() const { return m_matrix.isIdentity(); }
53 return m_matrix == m->m_matrix;
58 transform.multiply(TransformationMatrix(m_matrix));
66 m_matrix = mat;
69 TransformationMatrix m_matrix; member in class:WebCore::Matrix3DTransformOperation
TransformationMatrix.h 85 m_matrix[0][0] = a; m_matrix[0][1] = b; m_matrix[0][2] = 0; m_matrix[0][3] = 0;
86 m_matrix[1][0] = c; m_matrix[1][1] = d; m_matrix[1][2] = 0; m_matrix[1][3] = 0;
87 m_matrix[2][0] = 0; m_matrix[2][1] = 0; m_matrix[2][2] = 1; m_matrix[2][3] = 0;
355 Matrix4 m_matrix; member in class:WebCore::TransformationMatrix
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGTransform.h 50 SVGMatrix& svgMatrix() { return static_cast<SVGMatrix&>(m_matrix); }
51 AffineTransform matrix() const { return m_matrix; }
77 AffineTransform m_matrix; member in class:WebCore::SVGTransform
82 return a.m_type == b.m_type && a.m_angle == b.m_angle && a.m_matrix == b.m_matrix;
  /external/webkit/Source/WebCore/css/
WebKitCSSMatrix.h 49 double a() const { return m_matrix.a(); }
50 double b() const { return m_matrix.b(); }
51 double c() const { return m_matrix.c(); }
52 double d() const { return m_matrix.d(); }
53 double e() const { return m_matrix.e(); }
54 double f() const { return m_matrix.f(); }
56 void setA(double f) { m_matrix.setA(f); }
57 void setB(double f) { m_matrix.setB(f); }
58 void setC(double f) { m_matrix.setC(f); }
59 void setD(double f) { m_matrix.setD(f);
154 TransformationMatrix m_matrix; member in class:WebCore::WebKitCSSMatrix
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
Layer.h 54 const SkMatrix& getMatrix() const { return m_matrix; }
66 void setMatrix(const SkMatrix& matrix) { m_matrix = matrix; }
177 SkMatrix m_matrix; member in class:Layer
  /external/webkit/Source/WebCore/platform/graphics/android/context/
GraphicsOperation.h 181 ConcatCTM(const AffineTransform& affine) : m_matrix(affine) {}
183 context->concatCTM(m_matrix);
188 AffineTransform m_matrix; member in class:WebCore::GraphicsOperation::ConcatCTM
310 : m_bitmap(bitmap), m_matrix(matrix), m_operator(op), m_destRect(destRect) {}
312 context->drawBitmapPattern(m_bitmap, m_matrix, m_operator, m_destRect);
320 SkMatrix m_matrix; member in class:WebCore::GraphicsOperation::DrawBitmapPattern

Completed in 175 milliseconds