9 lines
315 B
C
9 lines
315 B
C
//
|
|
// nearest.h
|
|
// pngquant
|
|
//
|
|
struct nearest_map;
|
|
LIQ_PRIVATE struct nearest_map *nearest_init(const colormap *palette);
|
|
LIQ_PRIVATE unsigned int nearest_search(const struct nearest_map *map, const f_pixel *px, const int palette_index_guess, float *diff);
|
|
LIQ_PRIVATE void nearest_free(struct nearest_map *map);
|