jogamp.opengl.util.pngj.chunks.PngChunkSkipped Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jogl-all Show documentation
Show all versions of jogl-all Show documentation
Java™ Binding for the OpenGL® API
package jogamp.opengl.util.pngj.chunks;
import jogamp.opengl.util.pngj.ImageInfo;
import jogamp.opengl.util.pngj.PngjException;
/**
* Pseudo chunk type, for chunks that were skipped on reading
*/
public class PngChunkSkipped extends PngChunk {
public PngChunkSkipped(String id, ImageInfo info, int clen) {
super(id, info);
this.length = clen;
}
@Override
public ChunkOrderingConstraint getOrderingConstraint() {
return ChunkOrderingConstraint.NONE;
}
@Override
public ChunkRaw createRawChunk() {
throw new PngjException("Non supported for a skipped chunk");
}
@Override
public void parseFromRaw(ChunkRaw c) {
throw new PngjException("Non supported for a skipped chunk");
}
@Override
public void cloneDataFromRead(PngChunk other) {
throw new PngjException("Non supported for a skipped chunk");
}
@Override
public boolean allowsMultiple() {
return true;
}
}