Home
last modified time | relevance | path

Searched refs:kPerspective_Mask (Results 1 – 8 of 8) sorted by relevance

/third_party/skia/src/core/
DSkMatrix.cpp200 if (mask & kPerspective_Mask) { in isSimilarity()
230 if (mask & kPerspective_Mask) { in preservesRightAngles()
283 } else if (mask & kPerspective_Mask) { in preTranslate()
361 && !(fTypeMask & (kPerspective_Mask | kAffine_Mask))) { in preScale()
609 return 0 == (mask & (SkMatrix::kAffine_Mask | SkMatrix::kPerspective_Mask)); in only_scale_and_translate()
628 if ((aType | bType) & kPerspective_Mask) { in setConcat()
864 int isPersp = mask & kPerspective_Mask; in invertNonIdentity()
992 SkASSERT(m.getType() != SkMatrix::kPerspective_Mask); in Affine_vpts()
1210 SkASSERT((m.getType() & (kAffine_Mask | kPerspective_Mask)) == kAffine_Mask); in RotTrans_xy()
1223 SkASSERT((m.getType() & (kAffine_Mask | kPerspective_Mask))== kAffine_Mask); in Rot_xy()
[all …]
/third_party/skia/docs/examples/
DMatrix_TypeMask.cpp13 typeMask += SkMatrix::kPerspective_Mask & matrix.getType() ? "kPerspective_Mask" : ""; in draw()
/third_party/skia/tests/
DDrawBitmapRectTest.cpp38 if (mask & SkMatrix::kPerspective_Mask) { in rand_matrix()
71 rand_matrix(&mat, rand, SkMatrix::kAffine_Mask | SkMatrix::kPerspective_Mask); in test_treatAsSprite()
/third_party/skia/include/core/
DSkMatrix.h188 kPerspective_Mask = 0x08, //!< perspective SkMatrix enumerator
306 kPerspective_Mask); in hasPerspective()
1851 kPerspective_Mask;
1856 kPerspective_Mask |
/third_party/skia/src/svg/
DSkSVGDevice.cpp125 case SkMatrix::kPerspective_Mask: in svg_transform()
/third_party/skia/src/pdf/
DSkPDFDevice.cpp599 if (matrix.getType() & SkMatrix::kPerspective_Mask) { in internalDrawPath()
/third_party/skia/tools/debugger/
DDrawCommand.cpp1111 case SkMatrix::kPerspective_Mask: in writeMatrixType()
/third_party/skia/tools/fiddle/
Ddocumumentation_examples_map.txt1615 … = 0, kTranslate_Mask = 0x01, kScale_Mask = 0x02, kAffine_Mask = 0x04, kPerspective_Mask = 0x08, };