Package org.newdawn.slick.util

Examples of org.newdawn.slick.util.OperationNotSupportedException


   * Not supported in BigImage
   *
   * @see org.newdawn.slick.Image#bind()
   */
  public void bind() {
    throw new OperationNotSupportedException("Can't bind big images yet");
  }
View Full Code Here


   * Not supported in BigImage
   *
   * @see org.newdawn.slick.Image#copy()
   */
  public Image copy() {
    throw new OperationNotSupportedException("Can't copy big images yet");
  }
View Full Code Here

   * Not supported in BigImage
   *
   * @see org.newdawn.slick.Image#ensureInverted()
   */
  public void ensureInverted() {
    throw new OperationNotSupportedException("Doesn't make sense for tiled operations");
  }
View Full Code Here

   * 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");
  }
View Full Code Here

   * 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");
  }
View Full Code Here

   * Not supported in BigImage
   *
   * @see org.newdawn.slick.Image#getTexture()
   */
  public Texture getTexture() {
    throw new OperationNotSupportedException("Can't use big images as offscreen buffers");
  }
View Full Code Here

  /**
   * @see org.newdawn.slick.Image#initImpl()
   */
  protected void initImpl() {
    throw new OperationNotSupportedException("Can't use big images as offscreen buffers");
  }
View Full Code Here

  /**
   * @see org.newdawn.slick.Image#reinit()
   */
  protected void reinit() {
    throw new OperationNotSupportedException("Can't use big images as offscreen buffers");
  }
View Full Code Here

   * 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");
  }
View Full Code Here

   * Not supported in BigImage
   *
   * @see org.newdawn.slick.Image#bind()
   */
  public void bind() {
    throw new OperationNotSupportedException("Can't bind big images yet");
  }
View Full Code Here

TOP

Related Classes of org.newdawn.slick.util.OperationNotSupportedException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.