RetroArch/hqflt/grayscale.h
2010-08-19 15:28:00 +02:00

8 lines
179 B
C

/* Very simple grayscale filter.
* Author: Hans-Kristian Arntzen
* License: Public domain
*/
#include <stdint.h>
void grayscale_filter(uint16_t *data, int width, int height);