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

  /external/skia/src/svg/parser/
SkSVGParser.cpp 270 void SkSVGParser::translateMatrix(SkString& string, SkString* stringID) {
  /frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
AndroidCamera2Settings.java 572 Matrix translateMatrix = new Matrix();
576 translateMatrix.setTranslate(requestedCrop.exactCenterX(), requestedCrop.exactCenterY());
577 translateMatrix.postTranslate(-cropRect.centerX(), -cropRect.centerY());
579 translateMatrix.mapRect(/*inout*/cropRect);
  /frameworks/base/core/java/android/hardware/camera2/legacy/
ParameterUtils.java 516 Matrix translateMatrix = new Matrix();
520 translateMatrix.setTranslate(activeArray.exactCenterX(), activeArray.exactCenterY());
521 translateMatrix.postTranslate(-cropRect.centerX(), -cropRect.centerY());
523 translateMatrix.mapRect(/*inout*/cropRect);
557 Matrix translateMatrix = new Matrix();
561 translateMatrix.setScale(cropW / reference.width(), cropH / reference.height(),
564 translateMatrix.mapRect(/*inout*/shrunkRect);
    [all...]

Completed in 471 milliseconds