This is a faster version of putPixel() that does not clip out of range values and does not do bounds checking.
(int x, int y, int value)
| 1908 | /** This is a faster version of putPixel() that does not clip |
| 1909 | out of range values and does not do bounds checking. */ |
| 1910 | public abstract void set(int x, int y, int value); |
| 1911 | |
| 1912 | public abstract void set(int index, int value); |
| 1913 |
no test coverage detected