drawee/src/main/java/com/facebook/drawee/drawable/ScalingUtils.java [369:381]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    public void getTransformImpl(
        Matrix outTransform,
        Rect parentRect,
        int childWidth,
        int childHeight,
        float focusX,
        float focusY,
        float scaleX,
        float scaleY) {
      float scale, dx, dy;
      if (scaleY > scaleX) {
        scale = scaleY;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



drawee/src/main/java/com/facebook/drawee/drawable/ScalingUtils.java [403:415]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    public void getTransformImpl(
        Matrix outTransform,
        Rect parentRect,
        int childWidth,
        int childHeight,
        float focusX,
        float focusY,
        float scaleX,
        float scaleY) {
      float scale, dx, dy;
      if (scaleY > scaleX) {
        scale = scaleY;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



