/** * @see org.newdawn.slick.Image#initImpl() */ protected void initImpl() { throw new OperationNotSupportedException("Can't use big images as offscreen buffers"); }
/** * @see org.newdawn.slick.Image#reinit() */ protected void reinit() { throw new OperationNotSupportedException("Can't use big images as offscreen buffers"); }
/** * Not supported in BigImage * * @see org.newdawn.slick.Image#bind() */ public void bind() { throw new OperationNotSupportedException("Can't bind big images yet"); }
/** * Not supported in BigImage * * @see org.newdawn.slick.Image#copy() */ public Image copy() { throw new OperationNotSupportedException("Can't copy big images yet"); }
/** * Not supported in BigImage * * @see org.newdawn.slick.Image#ensureInverted() */ public void ensureInverted() { throw new OperationNotSupportedException("Doesn't make sense for tiled operations"); }
/** * 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"); }
/** * 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"); }
/** * Not supported in BigImage * * @see org.newdawn.slick.Image#getTexture() */ public Texture getTexture() { throw new OperationNotSupportedException("Can't use big images as offscreen buffers"); }
/** * 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"); }