Home | History | Annotate | Download | only in media

Lines Matching full:scale

96             float scale = targetHeight / bitmapHeightF;
97 if (scale < .9F || scale > 1F) {
98 scaler.setScale(scale, scale);
103 float scale = targetWidth / bitmapWidthF;
104 if (scale < .9F || scale > 1F) {
105 scaler.setScale(scale, scale);
145 float scale;
147 scale = width / (float) source.getWidth();
149 scale = height / (float) source.getHeight();
152 matrix.setScale(scale, scale);