blob: a7cb95dbf09eb4e1a525ccc4597975c27993a6e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
package jogamp.opengl.util.pngj.chunks;
import jogamp.opengl.util.pngj.ImageInfo;
public class PngChunkIDAT extends PngChunk {
// http://www.w3.org/TR/PNG/#11IDAT
// This is dummy placeholder - we write/read this chunk (actually several)
// by special code.
public PngChunkIDAT(ImageInfo i) {
super(ChunkHelper.IDAT, i);
}
@Override
public ChunkRaw createChunk() {// does nothing
return null;
}
@Override
public void parseFromChunk(ChunkRaw c) { // does nothing
}
@Override
public void cloneDataFromRead(PngChunk other) {
}
}
|