mirror of
https://github.com/alpine9000/amiga_examples
synced 2025-12-08 14:59:01 +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);
|