diff options
author | Marius Kintel <marius@kintel.net> | 2011-09-28 23:57:52 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-09-28 23:57:52 (GMT) |
commit | 2b3c140bd264f8a5cf94d3fa83f875933fbb4928 (patch) | |
tree | 91a96f286fe13d6530de513faa53249a669da44c /tests/imageutils.h | |
parent | 6c3ce9934755bcc579ac30104d651608c2c71622 (diff) | |
parent | da08b50c03418110a74a6f2667be1d916b607b87 (diff) |
Merge branch 'master' into visitortests
Conflicts:
tests/opencsgtest.cc
Diffstat (limited to 'tests/imageutils.h')
-rw-r--r-- | tests/imageutils.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/imageutils.h b/tests/imageutils.h new file mode 100644 index 0000000..72602a2 --- /dev/null +++ b/tests/imageutils.h @@ -0,0 +1,9 @@ +#ifndef IMAGEUTILS_H_ +#define IMAGEUTILS_H_ + +#include <stdlib.h> + +bool write_png(const char *filename, unsigned char *pixels, int width, int height); +void flip_image(const unsigned char *src, unsigned char *dst, size_t pixelsize, size_t width, size_t height); + +#endif |