RetroArch/hqflt/grayscale.h

8 lines
179 B
C
Raw Normal View History

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