231232233234235236237
* Not supported in BigImage * * @see org.newdawn.slick.Image#copy() */ public Image copy() { throw new OperationNotSupportedException("Can't copy big images yet"); }
431432433434435436437
* Not supported in BigImage * * @see org.newdawn.slick.Image#ensureInverted() */ public void ensureInverted() { throw new OperationNotSupportedException("Doesn't make sense for tiled operations"); }
440441442443444445446
* Not supported in BigImage * * @see org.newdawn.slick.Image#getColor(int, int) */ public Color getColor(int x, int y) { throw new OperationNotSupportedException("Can't use big images as buffers"); }
488489490491492493494
* Not supported in BigImage * * @see org.newdawn.slick.Image#getGraphics() */ public Graphics getGraphics() throws SlickException { throw new OperationNotSupportedException("Can't use big images as offscreen buffers"); }
589590591592593594595
* Not supported in BigImage * * @see org.newdawn.slick.Image#getTexture() */ public Texture getTexture() { throw new OperationNotSupportedException("Can't use big images as offscreen buffers"); }
596597598599600601602
/** * @see org.newdawn.slick.Image#initImpl() */ protected void initImpl() { throw new OperationNotSupportedException("Can't use big images as offscreen buffers"); }
603604605606607608609
/** * @see org.newdawn.slick.Image#reinit() */ protected void reinit() { throw new OperationNotSupportedException("Can't use big images as offscreen buffers"); }
612613614615616617618
* Not supported in BigImage * * @see org.newdawn.slick.Image#setTexture(org.newdawn.slick.opengl.Texture) */ public void setTexture(Texture texture) { throw new OperationNotSupportedException("Can't use big images as offscreen buffers"); }
268269270271272273274
* Not supported in BigImage * * @see org.newdawn.slick.Image#bind() */ public void bind() { throw new OperationNotSupportedException("Can't bind big images yet"); }
277278279280281282283