blob: 5349c87f30608c136c326cd7910930321d4f335c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef CAIRO_RESCALE_BOX_H
#define CAIRO_RESCALE_BOX_H
#include "goo/gtypes.h"
GBool downscale_box_filter(unsigned int *orig, int orig_stride, unsigned orig_width, unsigned orig_height,
signed scaled_width, signed scaled_height,
unsigned short int start_column, unsigned short int start_row,
unsigned short int width, unsigned short int height,
unsigned int *dest, int dst_stride);
#endif /* CAIRO_RESCALE_BOX_H */
|