mirror of
https://frontier.innolan.net/github/AmigaExamples.git
synced 2026-01-12 06:53:56 +00:00
13 lines
197 B
C
13 lines
197 B
C
#pragma once
|
|
|
|
typedef struct {
|
|
int w, h;
|
|
unsigned char *pix;
|
|
} quant_image_t;
|
|
|
|
void
|
|
quant_quantize(quant_image_t* im, int n_colors, int dither);
|
|
|
|
quant_image_t*
|
|
quant_newImage(int w, int h);
|