From 2eb32065b23a5cd90a6ae8908ae8a8ff24a4f209 Mon Sep 17 00:00:00 2001 From: Michael Pavone Date: Sat, 4 Mar 2017 11:50:14 -0800 Subject: Implement raw screenshot functionality requested in ticket:10 --- ppm.h | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 ppm.h (limited to 'ppm.h') diff --git a/ppm.h b/ppm.h new file mode 100644 index 0000000..27a2984 --- /dev/null +++ b/ppm.h @@ -0,0 +1,6 @@ +#ifndef PPM_H_ +#define PPM_H_ + +void save_ppm(FILE *f, uint32_t *buffer, uint32_t width, uint32_t height, uint32_t pitch); + +#endif //PPM_H_ -- cgit v1.2.3