mapnik/deps/pngquant/nearest.h
Daniel Patterson 40be65c947 Use built-in compiler defines to detect SSE support.
Remove SSE tests from SConstruct.
Minimize libimagequant files.
2015-05-20 16:17:47 -07:00

8 lines
355 B
C

//
// nearest.h
// pngquant
//
struct nearest_map;
LIQ_PRIVATE struct nearest_map *nearest_init(const colormap *palette, const bool fast);
LIQ_PRIVATE unsigned int nearest_search(const struct nearest_map *map, const f_pixel px, const int palette_index_guess, const float min_opaque, float *diff);
LIQ_PRIVATE void nearest_free(struct nearest_map *map);