()
| 1672 | } |
| 1673 | |
| 1674 | int[] getRGBImpl() { |
| 1675 | int width = getWidth(); |
| 1676 | int height = getHeight(); |
| 1677 | int[] rgbData = allocateRgbArray(width * height); |
| 1678 | getRGB(rgbData, 0, 0, 0, width, height); |
| 1679 | return rgbData; |
| 1680 | } |
| 1681 | |
| 1682 | /// Allocates an ARGB pixel array. The returned array is always a Simd-registered |
| 1683 | /// buffer (allocated via `Simd.allocInt`) regardless of whether SIMD optimizations |
no test coverage detected