9293949596979899100101102
*/ public static void releaseGraphicsForImage(Image image) throws SlickException { Graphics g = (Graphics) graphics.remove(image.getTexture()); if (g != null) { g.destroy(); } } /** * Create an underlying graphics context for the given image
103104105106107108109110111112113