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

  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/transforms/
AffineTransform.cpp 352 AffineTransform::operator SkMatrix() const
354 SkMatrix result;
367 result.set(SkMatrix::kMPersp2, SK_Scalar1);
TransformationMatrix.cpp     [all...]
  /external/chromium_org/third_party/skia/include/core/
SkMatrix.h 27 /** \class SkMatrix
29 The SkMatrix class holds a 3x3 matrix for transforming coordinates.
30 SkMatrix does not have a constructor, so it must be explicitly initialized
34 class SK_API SkMatrix {
230 bool setConcat(const SkMatrix& a, const SkMatrix& b);
263 bool preConcat(const SkMatrix& other);
300 bool postConcat(const SkMatrix& other);
353 bool SK_WARN_UNUSED_RESULT invert(SkMatrix* inverse) const {
479 typedef void (*MapXYProc)(const SkMatrix& mat, SkScalar x, SkScalar y
    [all...]
  /external/skia/include/core/
SkMatrix.h 27 /** \class SkMatrix
29 The SkMatrix class holds a 3x3 matrix for transforming coordinates.
30 SkMatrix does not have a constructor, so it must be explicitly initialized
34 class SK_API SkMatrix {
230 bool setConcat(const SkMatrix& a, const SkMatrix& b);
263 bool preConcat(const SkMatrix& other);
300 bool postConcat(const SkMatrix& other);
353 bool SK_WARN_UNUSED_RESULT invert(SkMatrix* inverse) const {
479 typedef void (*MapXYProc)(const SkMatrix& mat, SkScalar x, SkScalar y
    [all...]
  /external/chromium_org/third_party/skia/src/utils/
SkMatrix44.cpp 813 static void initFromMatrix(SkMScalar dst[4][4], const SkMatrix& src) {
815 dst[0][0] = SkScalarToMScalar(src[SkMatrix::kMScaleX]);
816 dst[1][0] = SkScalarToMScalar(src[SkMatrix::kMSkewX]);
817 dst[3][0] = SkScalarToMScalar(src[SkMatrix::kMTransX]);
818 dst[0][1] = SkScalarToMScalar(src[SkMatrix::kMSkewY]);
819 dst[1][1] = SkScalarToMScalar(src[SkMatrix::kMScaleY]);
820 dst[3][1] = SkScalarToMScalar(src[SkMatrix::kMTransY]);
824 SkMatrix44::SkMatrix44(const SkMatrix& src) {
828 SkMatrix44& SkMatrix44::operator=(const SkMatrix& src) {
841 SkMatrix44::operator SkMatrix() const
    [all...]
  /external/skia/src/utils/
SkMatrix44.cpp 813 static void initFromMatrix(SkMScalar dst[4][4], const SkMatrix& src) {
815 dst[0][0] = SkScalarToMScalar(src[SkMatrix::kMScaleX]);
816 dst[1][0] = SkScalarToMScalar(src[SkMatrix::kMSkewX]);
817 dst[3][0] = SkScalarToMScalar(src[SkMatrix::kMTransX]);
818 dst[0][1] = SkScalarToMScalar(src[SkMatrix::kMSkewY]);
819 dst[1][1] = SkScalarToMScalar(src[SkMatrix::kMScaleY]);
820 dst[3][1] = SkScalarToMScalar(src[SkMatrix::kMTransY]);
824 SkMatrix44::SkMatrix44(const SkMatrix& src) {
828 SkMatrix44& SkMatrix44::operator=(const SkMatrix& src) {
841 SkMatrix44::operator SkMatrix() const
    [all...]

Completed in 224 milliseconds