blob: a750ae34fae7a37c9fe8b50a68a8e817d1e412e9 (
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);
}
|