(int width, int height)
| 1922 | /// @deprecated scale should return an image rather than modify the image in place |
| 1923 | /// use scaled(int, int) instead |
| 1924 | public void scale(int width, int height) { |
| 1925 | //resize image |
| 1926 | image = Display.impl.scale(image, width, height); |
| 1927 | } |
| 1928 | |
| 1929 | boolean scaleArray(int srcWidth, int srcHeight, int height, int width, int[] currentArray, int[] destinationArray) { |
| 1930 | // Horizontal Resize |