(int width, int height, java.awt.ImageCapabilities caps, int transparency)
| 834 | } |
| 835 | |
| 836 | public SkiaVolatileImage(int width, int height, java.awt.ImageCapabilities caps, int transparency) { |
| 837 | log("new SkiaVolatileImage(%d, %d, %s, %d)", width, height, caps, transparency); |
| 838 | this.width = width; |
| 839 | this.height = height; |
| 840 | this.caps = caps; |
| 841 | this.surface = Surface.makeRaster(ImageInfo.makeN32Premul(width, height)); |
| 842 | } |
| 843 | |
| 844 | @Override |
| 845 | public java.awt.image.BufferedImage getSnapshot() { |
nothing calls this directly
no test coverage detected