Set the high bits of all pixels to opaque.
()
| 1196 | |
| 1197 | /** Set the high bits of all pixels to opaque. */ |
| 1198 | protected void opaque() { |
| 1199 | for (int i = 0; i < pixels.length; i++) { |
| 1200 | pixels[i] = 0xFF000000 | pixels[i]; |
| 1201 | } |
| 1202 | } |
| 1203 | |
| 1204 | |
| 1205 | /** |