(int[] rgbData,
int offset,
int x,
int y,
int width,
int height)
| 1591 | /// |
| 1592 | /// - `height`: the height of the region |
| 1593 | void getRGB(int[] rgbData, |
| 1594 | int offset, |
| 1595 | int x, |
| 1596 | int y, |
| 1597 | int width, |
| 1598 | int height) { |
| 1599 | Display.impl.getRGB(image, rgbData, offset, x, y, width, height); |
| 1600 | } |
| 1601 | |
| 1602 | /// Extracts data from this image into the given RGBImage |
| 1603 | /// |