ispc-downsampler 0.4.0

Image downsampler crate using ISPC
Documentation
1
2
3
4
5
6
7
#ifndef ISPC_IMAGE
#define ISPC_IMAGE
struct Image {
    uniform uint8* data;
    uniform int<2> size;
};
#endif