490491492493494495496
* 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"); }
538539540541542543544
* 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"); }
639640641642643644645
* Not supported in BigImage * * @see org.newdawn.slick.Image#getTexture() */ public Texture getTexture() { throw new OperationNotSupportedException("Can't use big images as offscreen buffers"); }
646647648649650651652
/** * @see org.newdawn.slick.Image#initImpl() */ protected void initImpl() { throw new OperationNotSupportedException("Can't use big images as offscreen buffers"); }
653654655656657658659
/** * @see org.newdawn.slick.Image#reinit() */ protected void reinit() { throw new OperationNotSupportedException("Can't use big images as offscreen buffers"); }
662663664665666667668
* 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"); }