Searched refs:localM (Results 1 - 11 of 11) sorted by relevance

/external/skia/gpu/include/
H A DGrTouchGesture.h20 const SkMatrix& localM();
/external/skia/src/core/
H A DSkShader.cpp60 bool SkShader::getLocalMatrix(SkMatrix* localM) const {
62 if (localM) {
63 *localM = *fLocalMatrix;
67 if (localM) {
68 localM->reset();
74 void SkShader::setLocalMatrix(const SkMatrix& localM) { argument
75 if (localM.isIdentity()) {
81 *fLocalMatrix = localM;
H A DSkDraw.cpp2375 SkMatrix localM, tempM; local
2376 bool hasLocalM = shader && shader->getLocalMatrix(&localM);
2388 tempM.postConcat(localM);
2409 shader->setLocalMatrix(localM);
/external/skia/include/core/
H A DSkShader.h42 * @param localM Optional: If not null, return the shader's local matrix
45 bool getLocalMatrix(SkMatrix* localM) const;
49 * @param localM The shader's new local matrix.
51 void setLocalMatrix(const SkMatrix& localM);
/external/skia/include/views/
H A DSkTouchGesture.h36 const SkMatrix& localM();
/external/skia/gpu/src/
H A Dapp-android.cpp232 const SkMatrix& localM = fGesture.localM(); local
233 if (localM.getType() & SkMatrix::kScale_Mask) {
234 canvas->setExternalMatrix(&localM);
236 canvas->concat(localM);
H A DGrTouchGesture.cpp41 const SkMatrix& GrTouchGesture::localM() { function in class:GrTouchGesture
/external/jdiff/src/jdiff/
H A DXMLToAPI.java146 MethodAPI localM = (MethodAPI)(iter2.next());
147 if (localM.name_.compareTo(m.name_) == 0 &&
148 localM.getSignature().compareTo(m.getSignature()) == 0)
/external/skia/samplecode/
H A DSampleApp.cpp588 const SkMatrix& localM = fGesture.localM(); local
589 if (localM.getType() & SkMatrix::kScale_Mask) {
590 canvas->setExternalMatrix(&localM);
592 canvas->concat(localM);
/external/skia/src/views/
H A DSkTouchGesture.cpp134 const SkMatrix& SkTouchGesture::localM() { function in class:SkTouchGesture
/external/skia/src/gpu/
H A DSkGpuDevice.cpp457 SkMatrix localM; local
458 if (shader->getLocalMatrix(&localM)) {
460 if (localM.invert(&inverse)) {

Completed in 192 milliseconds