blob: 64aee2dacd3b887cfb6cd1379ea383672a418b0e (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef SCALE_H
#define SCALE_H SCALE_H
/* scale */
void scale(struct image *img, unsigned int width, unsigned int height, unsigned int bytesperline, char* __restrict__ newBuf);
void nearestscale(struct image *img, unsigned int width, unsigned int height, unsigned int bytesperline, char* __restrict__ newBuf);
#endif
|