All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jogamp.opengl.util.pngj.chunks.ChunkPredicate Maven / Gradle / Ivy

The newest version!
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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy