blob: 4695ccf442122dce2777cdbf2b943f5f0246566d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package jogamp.opengl.util.pngj.chunks;
/**
* Decides if another chunk "matches", according to some criterion
*/
public interface ChunkPredicate {
/**
* The other chunk matches with this one
*
* @param chunk
* @return true if match
*/
boolean match(PngChunk chunk);
}
|