Searched refs:outPos (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/graphics/
H A DDragPreviewProvider.java161 public float getScaleAndPosition(Bitmap preview, int[] outPos) { argument
163 .getDragLayer().getLocationInDragLayer(mView, outPos);
164 outPos[0] = Math.round(outPos[0] - (preview.getWidth() - scale * mView.getWidth()) / 2);
165 outPos[1] = Math.round(outPos[1] - (1 - scale) * preview.getHeight() / 2 - previewPadding / 2);
/packages/apps/Launcher3/src/com/android/launcher3/shortcuts/
H A DShortcutDragPreviewProvider.java82 public float getScaleAndPosition(Bitmap preview, int[] outPos) { argument
85 float scale = launcher.getDragLayer().getLocationInDragLayer(mView, outPos);
92 outPos[0] += Math.round(scale * iconLeft + (scale * iconSize - preview.getWidth()) / 2 +
94 outPos[1] += Math.round((scale * mView.getHeight() - preview.getHeight()) / 2

Completed in 83 milliseconds